aboutsummaryrefslogtreecommitdiff
path: root/tests/main.cpp
diff options
context:
space:
mode:
authorMoritz Pflanzer <moritz.pflanzer@arm.com>2017-07-27 14:43:46 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-09-17 14:16:42 +0100
commitec2de0f0784ece788e6d9aa9d2af1f9a8c4175b1 (patch)
tree78f421757ffc46648fc7b404690daf04becf449c /tests/main.cpp
parent3a62324f8f0a35c6f2c69cbc38cc1d52863c4ba8 (diff)
downloadComputeLibrary-ec2de0f0784ece788e6d9aa9d2af1f9a8c4175b1.tar.gz
COMPMID-415: Allow multiple ids for filter-id
Change-Id: Id2e4ab6094438105fec17b8ea0ad74057968571b Reviewed-on: http://mpd-gerrit.cambridge.arm.com/81859 Reviewed-by: Anthony Barbier <anthony.barbier@arm.com> Tested-by: Kaizen <jeremy.johnson+kaizengerrit@arm.com>
Diffstat (limited to 'tests/main.cpp')
-rw-r--r--tests/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/main.cpp b/tests/main.cpp
index 7a1265cbbb..0b01185fc9 100644
--- a/tests/main.cpp
+++ b/tests/main.cpp
@@ -115,8 +115,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<int64_t>>("filter-id", -1);
- filter_id->set_help("Test id. Only this test will be executed.");
+ auto filter_id = parser.add_option<framework::SimpleOption<std::string>>("filter-id");
+ filter_id->set_help("List of test ids. ... can be used to define a range.");
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 log_level = parser.add_option<framework::EnumOption<framework::LogLevel>>("log-level", supported_log_levels, framework::LogLevel::ALL);