aboutsummaryrefslogtreecommitdiffstats
path: root/src/tests/test_passhash.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/tests/test_passhash.cpp')
-rw-r--r--src/tests/test_passhash.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tests/test_passhash.cpp b/src/tests/test_passhash.cpp
index 42528f51b..126b68780 100644
--- a/src/tests/test_passhash.cpp
+++ b/src/tests/test_passhash.cpp
@@ -36,7 +36,7 @@ class Bcrypt_Tests : public Text_Based_Test
Test::Result result("bcrypt");
result.test_eq("correct hash accepted", Botan::check_bcrypt(password, passhash), true);
- const size_t max_level = (Test::run_long_tests() ? 18 : 11);
+ const size_t max_level = (Test::run_long_tests() ? 14 : 11);
for(size_t level = 1; level <= max_level; ++level)
{
@@ -80,7 +80,7 @@ class Passhash9_Tests : public Text_Based_Test
}
}
- const size_t max_level = (Test::run_long_tests() ? 16 : 8);
+ const size_t max_level = (Test::run_long_tests() ? 14 : 8);
for(size_t level = 1; level <= max_level; ++level)
{