From 455c7d9c8185acdd8c8fe74ad4a59a3e0756d75d Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Sat, 4 Feb 2023 18:00:31 +0100 Subject: Moved coordinate index consistency test to tests folder --- tests/test.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'tests/test.c') 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 @@ #include +#include "coord_tests.h" #include "fst_tests.h" static bool run_test(Test *); @@ -53,9 +54,11 @@ int main(int argc, char *argv[]) { init_trans(); /**************************************/ - TestModule fst = { .name = "fst", .suites = fst_testsuites }; + TestModule fst = { .name = "fst", .suites = fst_suites }; + TestModule coord = { .name = "coord", .suites = coord_suites }; TestModule *modules[999] = { &fst, + &coord, NULL }; -- cgit v1.3