aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/benchmark_new/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/benchmark_new/main.cpp b/tests/benchmark_new/main.cpp
index 29f5a6e419..95c2d949cf 100644
--- a/tests/benchmark_new/main.cpp
+++ b/tests/benchmark_new/main.cpp
@@ -102,8 +102,8 @@ int main(int argc, char **argv)
log_format->set_help("Output format for measurements and failures");
auto filter = parser.add_option<framework::SimpleOption<std::string>>("filter", ".*");
filter->set_help("Regular expression to select test cases");
- auto filter_id = parser.add_option<framework::SimpleOption<std::string>>("filter-id", ".*");
- filter_id->set_help("Regular expression to select test cases by id");
+ auto filter_id = parser.add_option<framework::SimpleOption<int64_t>>("filter-id", -1);
+ filter_id->set_help("Test id. Only this test will be executed.");
auto log_file = parser.add_option<framework::SimpleOption<std::string>>("log-file");
log_file->set_help("Write output to file instead of to the console");
auto throw_errors = parser.add_option<framework::ToggleOption>("throw-errors");