From 90c4d3209a45654bafdcfa5869ab5447ef59e579 Mon Sep 17 00:00:00 2001 From: Przemek Wirkus Date: Thu, 21 May 2015 12:44:48 +0100 Subject: [PATCH] Bugfix: option -n was not using comma as a separator (space was used, which is not correct) --- mbed_greentea/mbed_greentea_cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mbed_greentea/mbed_greentea_cli.py b/mbed_greentea/mbed_greentea_cli.py index 9499c948..8dfb9ca7 100644 --- a/mbed_greentea/mbed_greentea_cli.py +++ b/mbed_greentea/mbed_greentea_cli.py @@ -180,7 +180,7 @@ def main(): test_result = 'SKIPPED' # Skip test not mentionned in -n option if opts.test_by_names: - test_list = opts.test_by_names.lower().split(' ') + test_list = opts.test_by_names.lower().split(',') if test_bin.lower() not in test_list: continue