summaryrefslogtreecommitdiff
path: root/test/other/pbs.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/other/pbs.cpp')
-rw-r--r--test/other/pbs.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/other/pbs.cpp b/test/other/pbs.cpp
index e1dfea0..4a8da2e 100644
--- a/test/other/pbs.cpp
+++ b/test/other/pbs.cpp
@@ -93,11 +93,11 @@ void performance_test() {
t.stop();
ll hash = accumulate(begin(ans), end(ans), 0LL);
- if (t.time > 700) cerr << "too slow: " << t.time << FAIL;
+ if (t.time > 900) cerr << "too slow: " << t.time << FAIL;
cerr << "tested performance: " << t.time << "ms (hash: " << hash << ")" << endl;
}
int main() {
stress_test();
- performance_test();
+ if (!sanitize) performance_test();
}