aboutsummaryrefslogtreecommitdiffstats
path: root/src/tests
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2015-12-24 23:52:43 -0500
committerJack Lloyd <[email protected]>2015-12-24 23:52:43 -0500
commit20e7a430425f20c939e872c932c29330f8db5422 (patch)
treeeedb0992dcd5916a2a3dec7b1236e12f625e467e /src/tests
parent9c504c706eec7fd96f728d1da28f6661a3d640b8 (diff)
Fix a few clang warnings. Set clang sanitizer flags
Diffstat (limited to 'src/tests')
-rw-r--r--src/tests/main.cpp6
-rw-r--r--src/tests/test_rng.h2
-rw-r--r--src/tests/tests.h1
3 files changed, 5 insertions, 4 deletions
diff --git a/src/tests/main.cpp b/src/tests/main.cpp
index 692bc41af..57a525dbd 100644
--- a/src/tests/main.cpp
+++ b/src/tests/main.cpp
@@ -71,7 +71,7 @@ class Test_Runner : public Botan_CLI::Command
const size_t threads = get_arg_sz("threads");
const size_t soak_level = get_arg_sz("soak");
const std::string drbg_seed = get_arg("drbg-seed");
- bool log_success = flag_set("log-success");
+ const bool log_success = flag_set("log-success");
const std::string data_dir = get_arg_or("data-dir", "src/tests/data");
std::vector<std::string> req = get_arg_list("suites");
@@ -211,7 +211,9 @@ class Test_Runner : public Botan_CLI::Command
for(auto&& test_name : tests_to_run)
{
auto run_it = [test_name] {
- return Botan_Tests::Test::run_test(test_name, false); };
+ return Botan_Tests::Test::run_test(test_name, false);
+ };
+
fut_results.push_back(std::async(std::launch::async, run_it));
while(fut_results.size() > threads)
diff --git a/src/tests/test_rng.h b/src/tests/test_rng.h
index 343356550..83ae9698a 100644
--- a/src/tests/test_rng.h
+++ b/src/tests/test_rng.h
@@ -32,7 +32,7 @@ class Fixed_Output_RNG : public Botan::RandomNumberGenerator
size_t reseed_with_sources(Botan::Entropy_Sources&,
size_t,
- std::chrono::milliseconds) { return 0; }
+ std::chrono::milliseconds) override { return 0; }
void randomize(uint8_t out[], size_t len) override
{
diff --git a/src/tests/tests.h b/src/tests/tests.h
index e12f5f6de..f98194278 100644
--- a/src/tests/tests.h
+++ b/src/tests/tests.h
@@ -388,7 +388,6 @@ class Text_Based_Test : public Test
std::set<std::string> m_required_keys;
std::set<std::string> m_optional_keys;
std::string m_output_key;
- bool m_clear_between_cb = false;
bool m_first = true;
std::unique_ptr<std::ifstream> m_cur;