aboutsummaryrefslogtreecommitdiff
path: root/tests/framework
diff options
context:
space:
mode:
Diffstat (limited to 'tests/framework')
-rw-r--r--tests/framework/command_line/CommonOptions.cpp2
-rw-r--r--tests/framework/command_line/CommonOptions.h1
2 files changed, 0 insertions, 3 deletions
diff --git a/tests/framework/command_line/CommonOptions.cpp b/tests/framework/command_line/CommonOptions.cpp
index f1c140e6fe..fee18f6386 100644
--- a/tests/framework/command_line/CommonOptions.cpp
+++ b/tests/framework/command_line/CommonOptions.cpp
@@ -39,7 +39,6 @@ CommonOptions::CommonOptions(CommandLineParser &parser)
: help(parser.add_option<ToggleOption>("help")),
instruments(),
iterations(parser.add_option<SimpleOption<int>>("iterations", 1)),
- threads(parser.add_option<SimpleOption<int>>("threads", 1)),
log_format(),
log_file(parser.add_option<SimpleOption<std::string>>("log-file")),
log_level(),
@@ -87,7 +86,6 @@ CommonOptions::CommonOptions(CommandLineParser &parser)
help->set_help("Show this help message");
instruments->set_help("Set the profiling instruments to use");
iterations->set_help("Number of iterations per test case");
- threads->set_help("Number of threads to use");
log_format->set_help("Output format for measurements and failures (affects only log-file)");
log_file->set_help("Write output to file instead of to the console (affected by log-format)");
log_level->set_help("Verbosity of the output");
diff --git a/tests/framework/command_line/CommonOptions.h b/tests/framework/command_line/CommonOptions.h
index b29c1d8dd5..f4646a0299 100644
--- a/tests/framework/command_line/CommonOptions.h
+++ b/tests/framework/command_line/CommonOptions.h
@@ -74,7 +74,6 @@ public:
arm_compute::utils::ToggleOption *help; /**< Show help option */
arm_compute::utils::EnumListOption<InstrumentsDescription> *instruments; /**< Instruments option */
arm_compute::utils::SimpleOption<int> *iterations; /**< Number of iterations option */
- arm_compute::utils::SimpleOption<int> *threads; /**< Number of threads option */
arm_compute::utils::EnumOption<LogFormat> *log_format; /**< Log format option */
arm_compute::utils::SimpleOption<std::string> *log_file; /**< Log file option */
arm_compute::utils::EnumOption<LogLevel> *log_level; /**< Logging level option */