diff options
author | lloyd <[email protected]> | 2014-02-09 16:52:51 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2014-02-09 16:52:51 +0000 |
commit | 4f3b0ce8fccd879791d5a701102ee0737f3509b1 (patch) | |
tree | 37ab6f550154de465d2677fdab1cc1d96904fa5c /src/tests/test_block.cpp | |
parent | 253aa701ffa654af3c880e1e1b4965fabf86be3b (diff) |
More fixes for minified builds
Diffstat (limited to 'src/tests/test_block.cpp')
-rw-r--r-- | src/tests/test_block.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/tests/test_block.cpp b/src/tests/test_block.cpp index 037ea0547..450e5f7fd 100644 --- a/src/tests/test_block.cpp +++ b/src/tests/test_block.cpp @@ -25,10 +25,7 @@ size_t block_test(const std::string& algo, size_t fails = 0; if(providers.empty()) - { - std::cout << "Unknown algo " << algo << "\n"; - ++fails; - } + throw std::runtime_error("Unknown block cipher " + algo); for(auto provider: providers) { |