diff options
author | Jack Lloyd <[email protected]> | 2018-03-31 10:10:38 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2018-03-31 10:10:38 -0400 |
commit | 07f70fafc38ef0956d4cd9176d6f8c578aedd07e (patch) | |
tree | 342b35c5392ceecb6f2d765958b32e2b1a63543d /src/tests/test_runner.cpp | |
parent | bdf71b1f83e227f104f39fcf472ebaa155d98cf1 (diff) |
Add --avoid-undefined option
GH #1518
Diffstat (limited to 'src/tests/test_runner.cpp')
-rw-r--r-- | src/tests/test_runner.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tests/test_runner.cpp b/src/tests/test_runner.cpp index d8491ab73..9b4e14a7a 100644 --- a/src/tests/test_runner.cpp +++ b/src/tests/test_runner.cpp @@ -94,6 +94,7 @@ int Test_Runner::run(const std::vector<std::string>& requested_tests, bool run_online_tests, bool run_long_tests, bool abort_on_first_fail, + bool avoid_undefined, const std::string& drbg_seed, size_t runs) { @@ -182,6 +183,7 @@ int Test_Runner::run(const std::vector<std::string>& requested_tests, run_online_tests, run_long_tests, abort_on_first_fail, + avoid_undefined, data_dir, pkcs11_lib, pf); |