aboutsummaryrefslogtreecommitdiffstats
path: root/src/tests/test_passhash.cpp
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2016-12-25 06:33:58 -0500
committerJack Lloyd <[email protected]>2016-12-25 06:33:58 -0500
commit286d6d5273c3a0700949657e9b71c42efbd8cf29 (patch)
tree3016f975f0a6456832d73cbc5901c7ab9402d1f8 /src/tests/test_passhash.cpp
parentf57b2b3191a054a20e26cd0e5f9a2a1c844ab64e (diff)
Travis did not like these long tests
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)
{