diff options
author | lloyd <[email protected]> | 2007-03-09 03:37:55 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2007-03-09 03:37:55 +0000 |
commit | c978b80839c237de58140be406ec950da07b26df (patch) | |
tree | 632c865f27010ccb742eb2c2630689cb0677e282 /checks | |
parent | 7ab6b83594b1ef8222f038ed825a3766a0625e64 (diff) |
Document the --init flag to check
Diffstat (limited to 'checks')
-rw-r--r-- | checks/check.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/checks/check.cpp b/checks/check.cpp index 7446da9df..a6074b685 100644 --- a/checks/check.cpp +++ b/checks/check.cpp @@ -41,7 +41,8 @@ int main(int argc, char* argv[]) if(opts.is_set("help") || argc <= 1) { - std::cerr << Botan::version_string() << " test driver\n" + std::cerr << "Test driver for " + << Botan::version_string() << "\n" << "Options:\n" << " --validate: Check test vectors\n" << " --benchmark: Benchmark everything\n" @@ -49,6 +50,7 @@ int main(int argc, char* argv[]) << " Benchmark only algorithms of a particular type\n" << " --html: Produce HTML output for benchmarks\n" << " --seconds=n: Benchmark for n seconds\n" + << " --init=<str>: Pass <str> to the library\n" << " --help: Print this message\n"; return 1; } |