aboutsummaryrefslogtreecommitdiffstats
path: root/src/tests/test_c25519.cpp
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2016-12-24 21:21:39 -0500
committerJack Lloyd <[email protected]>2016-12-24 21:21:39 -0500
commit0f3bf4d4d056c41b585b62145d03e1588c24fcec (patch)
tree24ea7b692eba2f279b3aae9913cf21fe2241f93e /src/tests/test_c25519.cpp
parent2ee2d884167e43f84830cd45af63ddbf245b540b (diff)
Add test option --run-long-tests
Previously longer tests were hidden behind higher 'soak levels' but these arbitrary cutoffs are confusing compared to a simple short tests/long tests split.
Diffstat (limited to 'src/tests/test_c25519.cpp')
-rw-r--r--src/tests/test_c25519.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/test_c25519.cpp b/src/tests/test_c25519.cpp
index 6790b3c4e..f5fab60f4 100644
--- a/src/tests/test_c25519.cpp
+++ b/src/tests/test_c25519.cpp
@@ -46,7 +46,7 @@ class Curve25519_Roundtrip_Test : public Test
{
std::vector<Test::Result> results;
- for(size_t i = 0; i <= Test::soak_level(); ++i)
+ for(size_t i = 0; i < 10; ++i)
{
Test::Result result("Curve25519 roundtrip");