aboutsummaryrefslogtreecommitdiff
path: root/tests/test.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test.c')
-rw-r--r--tests/test.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/test.c b/tests/test.c
index a1a382c..8961de1 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 "alg_tests.h"
3#include "coord_tests.h" 4#include "coord_tests.h"
4#include "fst_tests.h" 5#include "fst_tests.h"
5 6
@@ -54,9 +55,11 @@ int main(int argc, char *argv[]) {
54 init_trans(); 55 init_trans();
55 /**************************************/ 56 /**************************************/
56 57
58 TestModule alg = { .name = "alg", .suites = alg_suites };
57 TestModule fst = { .name = "fst", .suites = fst_suites }; 59 TestModule fst = { .name = "fst", .suites = fst_suites };
58 TestModule coord = { .name = "coord", .suites = coord_suites }; 60 TestModule coord = { .name = "coord", .suites = coord_suites };
59 TestModule *modules[999] = { 61 TestModule *modules[999] = {
62 &alg,
60 &fst, 63 &fst,
61 &coord, 64 &coord,
62 NULL 65 NULL

Generated with cgit - Back to sebastiano.tronto.net