tests/run-tests: Fix handling of --list-tests wrt skipped tests.

"skip <test>" message could leak before.
pull/3422/merge
Paul Sokolovsky 2017-12-14 12:11:17 +02:00
rodzic 8d11fc0bc4
commit aaeb70b7b7
1 zmienionych plików z 5 dodań i 4 usunięć

Wyświetl plik

@ -376,15 +376,16 @@ def run_tests(pyb, tests, args, base_path="."):
skip_it |= skip_const and is_const
skip_it |= skip_revops and test_name.startswith("class_reverse_op")
if args.list_tests:
if not skip_it:
print(test_file)
continue
if skip_it:
print("skip ", test_file)
skipped_tests.append(test_name)
continue
if args.list_tests:
print(test_file)
continue
# get expected output
test_file_expected = test_file + '.exp'
if os.path.isfile(test_file_expected):