diff options
author | 2019-05-21 14:45:30 +0300 | |
---|---|---|
committer | 2019-05-21 14:48:58 +0300 | |
commit | 84bb2d5d08c70558ac36b22f16dec7681e0d8a8e (patch) | |
tree | 56a6cc3e1baf4dbbee466d9f762346047fdeb8f6 /test/main.c | |
parent | 9e8751cf426b562ff0357ba265aaa0aeab8904c5 (diff) | |
download | librin-84bb2d5d08c70558ac36b22f16dec7681e0d8a8e.tar.gz librin-84bb2d5d08c70558ac36b22f16dec7681e0d8a8e.tar.bz2 librin-84bb2d5d08c70558ac36b22f16dec7681e0d8a8e.zip |
uuid: new module.
Signed-off-by: Gediminas Jakutis <gediminas@varciai.lt>
Diffstat (limited to 'test/main.c')
-rw-r--r-- | test/main.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/main.c b/test/main.c index 3ad8540..03b2211 100644 --- a/test/main.c +++ b/test/main.c @@ -22,6 +22,7 @@ #include "float_test.h" #include "diagnostic_test.h" #include "time_test.h" +#include "uuid_test.h" /* TODO: allow individual tests to be selected */ @@ -30,7 +31,8 @@ int main(int argc, char **argv) static const struct section sections[] = { {"float", float_test}, {"diagnostic", diagnostic_test}, - {"time", time_test} }; + {"time", time_test}, + {"uuid", uuid_test} }; size_t i; if (argc != 3) { |