summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorPaul Sokolovsky <pfalcon@users.sourceforge.net>2017-01-31 00:25:09 +0300
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2017-01-31 00:25:09 +0300
commitaee723ed4cf434a31d7ac9a54d6ec4871f6ddf56 (patch)
tree9f7797338a76689b79959b29fbe7812fa8f451e2
parentd335904666c43f0cfe518de41245b969cfca81af (diff)
downloadmicropython-aee723ed4cf434a31d7ac9a54d6ec4871f6ddf56.tar.gz
micropython-aee723ed4cf434a31d7ac9a54d6ec4871f6ddf56.zip
tests/run-tests: Skip frozenset tests if set literal syntax is not available.
-rwxr-xr-xtests/run-tests2
1 files changed, 1 insertions, 1 deletions
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