From 31db05a19268a9c9c2885e762d3ddb9da7ea0105 Mon Sep 17 00:00:00 2001 From: weidai Date: Fri, 1 Aug 2003 03:07:33 +0000 Subject: add b2 command git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@124 57ff6487-cd31-0410-9ec3-f628ee90f5f0 --- test.cpp | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'test.cpp') 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") -- cgit v1.2.1