Skip to content

Commit aee723e

Browse files
committed
tests/run-tests: Skip frozenset tests if set literal syntax is not available.
1 parent d335904 commit aee723e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/run-tests

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ def run_tests(pyb, tests, args):
314314
test_name = os.path.splitext(test_basename)[0]
315315
is_native = test_name.startswith("native_") or test_name.startswith("viper_")
316316
is_endian = test_name.endswith("_endian")
317-
is_set_type = test_name.startswith("set_")
317+
is_set_type = test_name.startswith("set_") or test_name.startswith("frozenset")
318318

319319
skip_it = test_file in skip_tests
320320
skip_it |= skip_native and is_native

0 commit comments

Comments
 (0)