summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2006-12-18 02:15:14 +0000
committerweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2006-12-18 02:15:14 +0000
commitecf8b8bd23401e833a901eb10ba06d0ab9482f88 (patch)
tree76104387bb97bd8dfdb054c7d810b0a22447a188
parentfd3c52c358191b224a5ade6a11708cdf92728413 (diff)
downloadcryptopp-ecf8b8bd23401e833a901eb10ba06d0ab9482f88.tar.gz
add V (version) option
git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@264 57ff6487-cd31-0410-9ec3-f628ee90f5f0
-rw-r--r--test.cpp4
-rw-r--r--usage.dat3
2 files changed, 7 insertions, 0 deletions
diff --git a/test.cpp b/test.cpp
index cd7f0e7..09b8637 100644
--- a/test.cpp
+++ b/test.cpp
@@ -317,6 +317,10 @@ int CRYPTOPP_API main(int argc, char *argv[])
FileSource usage("usage.dat", true, new FileSink(cout));
return 1;
}
+ else if (command == "V")
+ {
+ cout << "5.4" << endl;
+ }
else
{
cerr << "Unrecognized command. Run \"cryptest h\" to obtain usage information.\n";
diff --git a/usage.dat b/usage.dat
index 8ea82e3..044f18f 100644
--- a/usage.dat
+++ b/usage.dat
@@ -74,5 +74,8 @@ Test Driver for Crypto++(R) Library, a C++ Class Library of Cryptographic Scheme
- To run validation tests
cryptest v
+- To display version number
+ cryptest V
+
- To run benchmarks
cryptest b [time for each benchmark in seconds]