summaryrefslogtreecommitdiff
path: root/test/math
diff options
context:
space:
mode:
authorGloria Mundi <gloria@gloria-mundi.eu>2025-11-20 17:45:28 +0100
committerGloria Mundi <gloria@gloria-mundi.eu>2025-11-20 17:45:28 +0100
commit4c4aea6abd680b62132ead1c9cc943e3e489271d (patch)
tree2511d4f1ba5bf2d1288cd131a07b2c3dca9fd709 /test/math
parent64e29a2371a562c6306763220ce69d90032c2015 (diff)
enable _GLIBCXX_ASSERTIONS for sanitizer tests
Diffstat (limited to 'test/math')
-rw-r--r--test/math/millerRabin.base32.cpp2
-rw-r--r--test/math/millerRabin.cpp2
-rw-r--r--test/math/rho.cpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/test/math/millerRabin.base32.cpp b/test/math/millerRabin.base32.cpp
index e9a4b57..70be2f8 100644
--- a/test/math/millerRabin.base32.cpp
+++ b/test/math/millerRabin.base32.cpp
@@ -98,7 +98,7 @@ void extra_tests() {
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;
}
diff --git a/test/math/millerRabin.cpp b/test/math/millerRabin.cpp
index e7feba1..bdcdee6 100644
--- a/test/math/millerRabin.cpp
+++ b/test/math/millerRabin.cpp
@@ -90,7 +90,7 @@ void extra_tests() {
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;
}
diff --git a/test/math/rho.cpp b/test/math/rho.cpp
index 9943a8c..2c8a319 100644
--- a/test/math/rho.cpp
+++ b/test/math/rho.cpp
@@ -92,7 +92,7 @@ void stress_test() {
cerr << FAIL;
}
}
- if (t.time > 100) cerr << "too slow" << FAIL;
+ if (!sanitize && t.time > 100) cerr << "too slow" << FAIL;
cerr << "stress tested: " << t.time << "ms" << endl;
}