performance-metrics: Remove unnecessary prelude on --list-tests

The user knows they have requested the list of tests.

Signed-off-by: Rob Bradford <robert.bradford@intel.com>
This commit is contained in:
Rob Bradford 2022-03-14 09:50:00 +00:00 committed by Sebastien Boeuf
parent 959be92189
commit 0cbdbc8122

View File

@ -452,7 +452,6 @@ fn main() {
.get_matches();
if cmd_arguments.is_present("list-tests") {
println!("List of available metrics tests:\n");
for test in TEST_LIST.iter() {
println!("\"{}\" ({})", test.name, test.control);
}