diff options
author | Jack Lloyd <[email protected]> | 2015-12-24 23:52:43 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2015-12-24 23:52:43 -0500 |
commit | 20e7a430425f20c939e872c932c29330f8db5422 (patch) | |
tree | eedb0992dcd5916a2a3dec7b1236e12f625e467e /src/tests/main.cpp | |
parent | 9c504c706eec7fd96f728d1da28f6661a3d640b8 (diff) |
Fix a few clang warnings. Set clang sanitizer flags
Diffstat (limited to 'src/tests/main.cpp')
-rw-r--r-- | src/tests/main.cpp | 6 |
1 files changed, 4 insertions, 2 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) |