summaryrefslogtreecommitdiff
path: root/test/other
diff options
context:
space:
mode:
authormzuenni <michi.zuendorf@gmail.com>2024-08-30 15:07:05 +0200
committermzuenni <michi.zuendorf@gmail.com>2024-08-30 15:07:05 +0200
commitddd3e1ddc7a3ad7225ead3fbc291b19afa4b4add (patch)
treecaf0f9448ee8cfd1f88d6d56eea540d7cca11d6b /test/other
parentac2d9ad3f2c88bc12420fc439e8d0b4775a11169 (diff)
increased timelimit
Diffstat (limited to 'test/other')
-rw-r--r--test/other/josephus2.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/other/josephus2.cpp b/test/other/josephus2.cpp
index d28fe0d..85a9d28 100644
--- a/test/other/josephus2.cpp
+++ b/test/other/josephus2.cpp
@@ -31,7 +31,7 @@ void performance_test() {
hash += rotateLeft(1'000'000'000'000'000'000ll + i);
}
t.stop();
- if (t.time > 500) cerr << "too slow: " << t.time << FAIL;
+ if (t.time > 750) cerr << "too slow: " << t.time << FAIL;
cerr << "tested performance: " << t.time << "ms (hash: " << hash << ")" << endl;
}