X-Git-Url: https://git.distorted.org.uk/~mdw/disorder/blobdiff_plain/b90f122bd10bd896f2f9b0cf5676bcd436a7d42e..a0ead2ba812735c2d1edd660b8608f8cb52cea5d:/lib/test.c diff --git a/lib/test.c b/lib/test.c index c205a57..d18aa34 100644 --- a/lib/test.c +++ b/lib/test.c @@ -21,7 +21,7 @@ #include "test.h" -int tests, errors; +long long tests, errors; int fail_first; void count_error(void) { @@ -158,7 +158,10 @@ int main(void) { test_hash(); test_url(); test_regsub(); - fprintf(stderr, "%d errors out of %d tests\n", errors, tests); + test_bits(); + test_vector(); + test_syscalls(); + fprintf(stderr, "%lld errors out of %lld tests\n", errors, tests); return !!errors; }