X-Git-Url: https://git.distorted.org.uk/~mdw/disorder/blobdiff_plain/b90f122bd10bd896f2f9b0cf5676bcd436a7d42e..8aae240b86a4b055989ef631e1c8876c3d338873:/lib/test.c?ds=sidebyside diff --git a/lib/test.c b/lib/test.c index c205a57..407f77e 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,9 @@ int main(void) { test_hash(); test_url(); test_regsub(); - fprintf(stderr, "%d errors out of %d tests\n", errors, tests); + test_bits(); + test_vector(); + fprintf(stderr, "%lld errors out of %lld tests\n", errors, tests); return !!errors; }