diff options
Diffstat (limited to 'test/math/millerRabin.cpp')
| -rw-r--r-- | test/math/millerRabin.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/math/millerRabin.cpp b/test/math/millerRabin.cpp index 18fad40..bdcdee6 100644 --- a/test/math/millerRabin.cpp +++ b/test/math/millerRabin.cpp @@ -87,10 +87,10 @@ void extra_tests() { t.start(); auto got = isPrime(x); t.stop(); - bool expected = sz(factors) == 1 && factors.begin()->second == 1; + bool expected = ssize(factors) == 1 && factors.begin()->second == 1; if (got != expected) cerr << "error: " << x << FAIL; } - if (t.time > 10) cerr << "too slow" << FAIL; + if (!sanitize && t.time > 10) cerr << "too slow" << FAIL; cerr << "stress tested: " << t.time << "ms" << endl; } |
