diff options
-rwxr-xr-x | tests/run-tests | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/tests/run-tests b/tests/run-tests index 35b609612..2330b7df0 100755 --- a/tests/run-tests +++ b/tests/run-tests @@ -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): |