summaryrefslogtreecommitdiff
path: root/test/test_run.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_run.c')
-rw-r--r--test/test_run.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/test_run.c b/test/test_run.c
index 8728b81..7ec1403 100644
--- a/test/test_run.c
+++ b/test/test_run.c
@@ -23,6 +23,7 @@
#include "test_header.h"
#include "test_io.h"
+#include "test_table.h"
int tests_run = 0;
@@ -30,7 +31,11 @@ int tests_run = 0;
static char *run_all_tests(void) {
mu_run_test(test_stream_obj);
mu_run_test(test_stream_rw);
+ mu_run_test(test_stream_realloc);
+ mu_run_test(test_stream_xor);
+ mu_run_test(test_stream_nav);
mu_run_test(test_header_read);
+ mu_run_test(test_table_list);
return NULL;
}