diff options
| author | jakob <jakob@memeware.net> | 2017-03-01 19:03:20 -0500 |
|---|---|---|
| committer | jakob <jakob@memeware.net> | 2017-03-01 19:03:20 -0500 |
| commit | 0e67a05edcc3ba01221a6bfd14750b5b8090887f (patch) | |
| tree | 94729dcef273244164d6b84d72d17481818baa7f /test/test_run.c | |
| parent | d65a3ae8790ae28a90f0ebcf0bc4dc078c67dc35 (diff) | |
First working commit of the rewrite.
Diffstat (limited to 'test/test_run.c')
| -rw-r--r-- | test/test_run.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/test_run.c b/test/test_run.c index c6930dc..f1bf07e 100644 --- a/test/test_run.c +++ b/test/test_run.c @@ -21,6 +21,7 @@ #include "minunit.h" +#include "test_encoding.h" #include "test_header.h" #include "test_io.h" #include "test_table.h" @@ -29,14 +30,18 @@ int tests_run = 0; static char *run_all_tests(void) { + mu_run_test(test_out_path); mu_run_test(test_stream_obj); mu_run_test(test_stream_rw); + mu_run_test(test_stream_dump); 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); mu_run_test(test_table_elif); + mu_run_test(test_table_file); + mu_run_test(test_decode_utf16le); return NULL; } |