From 507e4b15dd1e0fafe794eecddf2425366254e1b3 Mon Sep 17 00:00:00 2001 From: Dominic Hamon Date: Thu, 13 Dec 2018 11:03:14 +0000 Subject: [PATCH] Update documentation of benchmark_filter It should now match reality. --- src/benchmark.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/benchmark.cc b/src/benchmark.cc index 410493fded..aab07500af 100644 --- a/src/benchmark.cc +++ b/src/benchmark.cc @@ -57,9 +57,9 @@ DEFINE_bool(benchmark_list_tests, false, DEFINE_string(benchmark_filter, ".", "A regular expression that specifies the set of benchmarks " - "to execute. If this flag is empty, no benchmarks are run. " - "If this flag is the string \"all\", all benchmarks linked " - "into the process are run."); + "to execute. If this flag is empty, or if this flag is the " + "string \"all\", all benchmarks linked into the binary are " + "run."); DEFINE_double(benchmark_min_time, 0.5, "Minimum number of seconds we should run benchmark before "