diff options
Diffstat (limited to 'tests/test.c')
| -rw-r--r-- | tests/test.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/test.c b/tests/test.c index cc14456..a1a382c 100644 --- a/tests/test.c +++ b/tests/test.c | |||
| @@ -1,5 +1,6 @@ | |||
| 1 | #include <stdio.h> | 1 | #include <stdio.h> |
| 2 | 2 | ||
| 3 | #include "coord_tests.h" | ||
| 3 | #include "fst_tests.h" | 4 | #include "fst_tests.h" |
| 4 | 5 | ||
| 5 | static bool run_test(Test *); | 6 | static bool run_test(Test *); |
| @@ -53,9 +54,11 @@ int main(int argc, char *argv[]) { | |||
| 53 | init_trans(); | 54 | init_trans(); |
| 54 | /**************************************/ | 55 | /**************************************/ |
| 55 | 56 | ||
| 56 | TestModule fst = { .name = "fst", .suites = fst_testsuites }; | 57 | TestModule fst = { .name = "fst", .suites = fst_suites }; |
| 58 | TestModule coord = { .name = "coord", .suites = coord_suites }; | ||
| 57 | TestModule *modules[999] = { | 59 | TestModule *modules[999] = { |
| 58 | &fst, | 60 | &fst, |
| 61 | &coord, | ||
| 59 | NULL | 62 | NULL |
| 60 | }; | 63 | }; |
| 61 | 64 | ||
