summaryrefslogtreecommitdiff
path: root/test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test.cpp')
-rw-r--r--test.cpp9
1 files changed, 3 insertions, 6 deletions
diff --git a/test.cpp b/test.cpp
index a21d351..77546d2 100644
--- a/test.cpp
+++ b/test.cpp
@@ -265,12 +265,9 @@ int CRYPTOPP_CDECL main(int argc, char *argv[])
else if (command == "v")
return !Validate(argc>2 ? atoi(argv[2]) : 0, argv[1][1] == 'v', argc>3 ? argv[3] : NULL);
else if (command == "b")
- {
- if (argc<3)
- BenchmarkAll();
- else
- BenchmarkAll((float)atof(argv[2]));
- }
+ BenchmarkAll(argc<3 ? 1 : atof(argv[2]));
+ else if (command == "b2")
+ BenchmarkAll2(argc<3 ? 1 : atof(argv[2]));
else if (command == "z")
GzipFile(argv[3], argv[4], argv[2][0]-'0');
else if (command == "u")