aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--checks/check.cpp4
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;
}