X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/blobdiff_plain/1bcd69c4cfd2f1080014b792a1dc15ed1883f1c5..f9d42b20477523bf2ab2172d51e78d2a398e117f:/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; }