diff options
author | Jack Lloyd <[email protected]> | 2015-07-18 02:15:03 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2015-07-18 02:15:03 -0400 |
commit | 30b0e3c88e94ba04c1843798f7ac74a008e01d9b (patch) | |
tree | e6c0e5758a25ae88310d39f90d1083c01b1148bb /src/tests/test_ffi.cpp | |
parent | a8eff4cc466053041e7f68dd1cf58023d95b4a1e (diff) |
Timing ratio is too tight for CI VMs
Diffstat (limited to 'src/tests/test_ffi.cpp')
-rw-r--r-- | src/tests/test_ffi.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/test_ffi.cpp b/src/tests/test_ffi.cpp index 9706f25ea..47191d439 100644 --- a/src/tests/test_ffi.cpp +++ b/src/tests/test_ffi.cpp @@ -134,7 +134,7 @@ TEST_CASE("FFI PBKDF", "[ffi]") INFO("Iterations " << iters_10ms << " " << iters_100ms); const double ratio = static_cast<double>(iters_100ms) / iters_10ms; - CHECK(ratio >= 5); + CHECK(ratio >= 3); CHECK(ratio <= 15); } |