mirror of
https://github.com/google/benchmark.git
synced 2025-04-03 16:10:58 +08:00
benchmark_iterations works as expected
This commit is contained in:
parent
b3f0d71e50
commit
3a6f24c67b
@ -423,7 +423,7 @@ void UseRealTime() {
|
|||||||
|
|
||||||
void PrintUsageAndExit() {
|
void PrintUsageAndExit() {
|
||||||
fprintf(stdout, "benchmark [--benchmark_filter=<regex>]\n"
|
fprintf(stdout, "benchmark [--benchmark_filter=<regex>]\n"
|
||||||
// TODO " [--benchmark_iterations=<iterations>]\n"
|
" [--benchmark_iterations=<iterations>]\n"
|
||||||
" [--benchmark_min_time=<min_time>]\n"
|
" [--benchmark_min_time=<min_time>]\n"
|
||||||
// " [--benchmark_memory_usage]\n"
|
// " [--benchmark_memory_usage]\n"
|
||||||
// TODO " [--benchmark_repetitions=<num_repetitions>]\n"
|
// TODO " [--benchmark_repetitions=<num_repetitions>]\n"
|
||||||
@ -436,10 +436,8 @@ void ParseCommandLineFlags(int* argc, const char** argv) {
|
|||||||
for (int i = 1; i < *argc; ++i) {
|
for (int i = 1; i < *argc; ++i) {
|
||||||
if (ParseStringFlag(argv[i], "benchmark_filter",
|
if (ParseStringFlag(argv[i], "benchmark_filter",
|
||||||
&FLAGS_benchmark_filter) ||
|
&FLAGS_benchmark_filter) ||
|
||||||
/* TODO
|
|
||||||
ParseInt32Flag(argv[i], "benchmark_iterations",
|
ParseInt32Flag(argv[i], "benchmark_iterations",
|
||||||
&FLAGS_benchmark_iterations) ||
|
&FLAGS_benchmark_iterations) ||
|
||||||
*/
|
|
||||||
ParseDoubleFlag(argv[i], "benchmark_min_time",
|
ParseDoubleFlag(argv[i], "benchmark_min_time",
|
||||||
&FLAGS_benchmark_min_time) ||
|
&FLAGS_benchmark_min_time) ||
|
||||||
// TODO(dominic)
|
// TODO(dominic)
|
||||||
|
Loading…
Reference in New Issue
Block a user