From 3bfd0bb403d62bd942d1912d085ea59b156062fd Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Fri, 10 Feb 2023 23:30:20 +0100 Subject: Added (just a few) tests for alg and added fields to alg struct --- tests/test.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'tests/test.c') 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 @@ #include +#include "alg_tests.h" #include "coord_tests.h" #include "fst_tests.h" @@ -54,9 +55,11 @@ int main(int argc, char *argv[]) { init_trans(); /**************************************/ + TestModule alg = { .name = "alg", .suites = alg_suites }; TestModule fst = { .name = "fst", .suites = fst_suites }; TestModule coord = { .name = "coord", .suites = coord_suites }; TestModule *modules[999] = { + &alg, &fst, &coord, NULL -- cgit v1.3