diff options
author | Jack Lloyd <[email protected]> | 2015-10-11 11:07:46 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2015-10-11 11:07:46 -0400 |
commit | 386ee3f085a7c9837ef7efbc26876e1bae8110e5 (patch) | |
tree | 1dc9029084156fc658096f1b3475e7d5d8002401 /src/tests/test_stream.cpp | |
parent | 1b417a05cf00be84c7e6ebfd71850282d424be7e (diff) |
Don't treat missing ciphers, hashes, etc as test failures
Just print an error message and return. Reduces false fails with
smaller builds
Diffstat (limited to 'src/tests/test_stream.cpp')
-rw-r--r-- | src/tests/test_stream.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/test_stream.cpp b/src/tests/test_stream.cpp index 046c199ec..d91d28d9b 100644 --- a/src/tests/test_stream.cpp +++ b/src/tests/test_stream.cpp @@ -34,7 +34,7 @@ size_t stream_test(const std::string& algo, if(providers.empty()) { std::cout << "Unknown stream cipher " << algo << std::endl; - ++fails; + return 0; } for(auto provider: providers) |