diff options
author | lloyd <[email protected]> | 2008-11-10 22:53:29 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-11-10 22:53:29 +0000 |
commit | fa0b848c94c7dc574bb807b940150e3fdec775d3 (patch) | |
tree | de453e4b33ce49f73f1ab17e59a2022a94a36444 /checks/check.cpp | |
parent | 0e30377b97bf7a999747da4d6b311c1170ee6107 (diff) |
Update initializer in self-test
Diffstat (limited to 'checks/check.cpp')
-rw-r--r-- | checks/check.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/checks/check.cpp b/checks/check.cpp index dfe77c39b..bc5d800d7 100644 --- a/checks/check.cpp +++ b/checks/check.cpp @@ -94,14 +94,13 @@ int main(int argc, char* argv[]) { try { - OptionParser opts("help|html|init=|test|validate|" + OptionParser opts("help|html|test|validate|" "benchmark|bench-type=|bench-algo=|seconds="); opts.parse(argv); test_types(); // do this always - Botan::InitializerOptions init_options(opts.value_if_set("init")); - Botan::LibraryInitializer init(init_options); + Botan::LibraryInitializer init(false); Botan::AutoSeeded_RNG rng; |