X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/blobdiff_plain/b90f122bd10bd896f2f9b0cf5676bcd436a7d42e..e18c4734744e56b738ca2918dffe071f95f4c14b:/lib/test.c diff --git a/lib/test.c b/lib/test.c index c205a57..30af3a5 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,8 @@ int main(void) { test_hash(); test_url(); test_regsub(); - fprintf(stderr, "%d errors out of %d tests\n", errors, tests); + test_bits(); + fprintf(stderr, "%lld errors out of %lld tests\n", errors, tests); return !!errors; }