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_modes.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_modes.cpp')
-rw-r--r-- | src/tests/test_modes.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tests/test_modes.cpp b/src/tests/test_modes.cpp index 09e0be8ba..81a15445e 100644 --- a/src/tests/test_modes.cpp +++ b/src/tests/test_modes.cpp @@ -28,20 +28,20 @@ secure_vector<byte> run_mode(const std::string& algo, const secure_vector<byte>& key) { #if 0 - std::unique_ptr<Cipher_Mode> cipher(get_cipher(algo, dir)); + std::unique_ptr<Cipher_Mode> cipher(get_cipher_mode(algo, dir)); cipher->set_key(key); cipher->start(nonce); secure_vector<byte> ct = pt; cipher->finish(ct); -#endif - +#else Pipe pipe(get_cipher(algo, SymmetricKey(key), InitializationVector(nonce), dir)); pipe.process_msg(pt); return pipe.read_all(); +#endif } size_t mode_test(const std::string& algo, |