diff options
author | Alexander Bluhm <[email protected]> | 2017-03-31 15:15:15 +0200 |
---|---|---|
committer | Alexander Bluhm <[email protected]> | 2017-04-21 14:38:35 +0200 |
commit | e021c6ee92d4a1f98465db2a47e3330c27322d47 (patch) | |
tree | 613c706ed2b7a39d559078673242955cc17c4436 /src/tests/tests.h | |
parent | eeb01d7267801988fe2b068b5dfac0bb38a2b359 (diff) |
Filter provider in test loops, skip text based without provider.
The tests for block, hash, stream, pubkey, and mac loop over all
possible crypto providers. If a specific provider is given on the
botan-test command line, use only this one. If the provider to be
tested is restricted, skip text based tests that do not have a
possible provider.
Diffstat (limited to 'src/tests/tests.h')
-rw-r--r-- | src/tests/tests.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/tests.h b/src/tests/tests.h index 484e5579e..406cff57a 100644 --- a/src/tests/tests.h +++ b/src/tests/tests.h @@ -441,8 +441,8 @@ class Text_Based_Test : public Test virtual Test::Result run_one_test(const std::string& header, const VarMap& vars) = 0; - // Called before run_one_test + virtual std::vector<std::string> possible_providers(const std::string&); virtual bool skip_this_test(const std::string& header, const VarMap& vars); |