diff options
author | Jack Lloyd <[email protected]> | 2018-04-11 18:05:40 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2018-04-11 18:05:40 -0400 |
commit | 87c697920206ac7ab0f757d3ec0c5550defd2517 (patch) | |
tree | 61da156f5a2c4bf65de38f93cb432adc1f233f1c /src/tests/unit_ecdsa.cpp | |
parent | c6a90da3f5a43411c6cd5a481b4af6a2b301cc11 (diff) |
Fix the botan-test --verbose flag, which did nothing
It used to do something, then I broke it.
Diffstat (limited to 'src/tests/unit_ecdsa.cpp')
-rw-r--r-- | src/tests/unit_ecdsa.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/unit_ecdsa.cpp b/src/tests/unit_ecdsa.cpp index e21d4764c..260eb8571 100644 --- a/src/tests/unit_ecdsa.cpp +++ b/src/tests/unit_ecdsa.cpp @@ -299,7 +299,7 @@ Test::Result test_encoding_options() result.test_eq("Hybrid point same size as uncompressed", enc_uncompressed.size(), enc_hybrid.size()); - if(Test::no_avoid_undefined_behavior()) + if(Test::options().undefined_behavior_allowed()) { auto invalid_format = static_cast<Botan::PointGFp::Compression_Type>(99); |