diff options
Diffstat (limited to 'test/source/main.c')
-rw-r--r-- | test/source/main.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/source/main.c b/test/source/main.c index 3e33c35..25246cf 100644 --- a/test/source/main.c +++ b/test/source/main.c @@ -3,6 +3,7 @@ #include <stdio.h> #include <stdlib.h> #include <zap/mem.h> +#include <zap/mth.h> #define zaptest_log(_expr,_typ,_fmtspec) (fprintf(stderr,"(" #_expr "): " _fmtspec "\n\n",(_typ)(_expr))); @@ -17,6 +18,7 @@ typedef bool (* zaptest_testtyp)(void); +#include "test/abs.i" #include "test/bool.i" #include "test/cmp.i" #include "test/memcnt.i" @@ -39,6 +41,7 @@ typedef bool (* zaptest_testtyp)(void); #include "test/win1252enc.i" static zaptest_testtyp zaptest_tests[] = { + zaptest_test_abs, zaptest_test_bool, zaptest_test_cmp, zaptest_test_memcnt, |