aboutsummaryrefslogtreecommitdiffstats
path: root/src/tests/tests.cpp
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2017-09-16 14:00:17 -0400
committerJack Lloyd <[email protected]>2017-09-16 14:04:47 -0400
commit6123db0a94f38f218bfdf61409b52ca23c28545b (patch)
treed7d62a1b429f7d783bdef8969853e279754c52a0 /src/tests/tests.cpp
parente3f2528713840b128ab7645ef826f331ad7cbb29 (diff)
Support PSSR_Raw
Allows PSS-signing a raw hash while also still specifying the salt length. GH #1211
Diffstat (limited to 'src/tests/tests.cpp')
-rw-r--r--src/tests/tests.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/tests/tests.cpp b/src/tests/tests.cpp
index da1f874cf..cdccfe76c 100644
--- a/src/tests/tests.cpp
+++ b/src/tests/tests.cpp
@@ -965,11 +965,11 @@ std::vector<Test::Result> Text_Based_Test::run()
{
try
{
- if(possible_providers(header).empty() ||
- skip_this_test(header, vars))
- {
+ if(skip_this_test(header, vars))
+ continue;
+
+ if(possible_providers(header).empty())
continue;
- }
++test_cnt;