From aee723ed4cf434a31d7ac9a54d6ec4871f6ddf56 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Tue, 31 Jan 2017 00:25:09 +0300 Subject: [PATCH] tests/run-tests: Skip frozenset tests if set literal syntax is not available. --- tests/run-tests | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/run-tests b/tests/run-tests index 16d5f15eaa..c74d0f24b4 100755 --- a/tests/run-tests +++ b/tests/run-tests @@ -314,7 +314,7 @@ def run_tests(pyb, tests, args): test_name = os.path.splitext(test_basename)[0] is_native = test_name.startswith("native_") or test_name.startswith("viper_") is_endian = test_name.endswith("_endian") - is_set_type = test_name.startswith("set_") + is_set_type = test_name.startswith("set_") or test_name.startswith("frozenset") skip_it = test_file in skip_tests skip_it |= skip_native and is_native