From 86aa61918a67b626809e8d132a80a63daf380b1c Mon Sep 17 00:00:00 2001 From: Damien George Date: Mon, 19 Aug 2024 12:15:17 +1000 Subject: [PATCH] tests/run-tests.py: Skip additional tests when slice unavailable. Both of these tests require slice to be enabled. Signed-off-by: Damien George --- tests/run-tests.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/run-tests.py b/tests/run-tests.py index 83344714c..d0c93f74b 100755 --- a/tests/run-tests.py +++ b/tests/run-tests.py @@ -563,6 +563,7 @@ def run_tests(pyb, tests, args, result_dir, num_threads=1): # These tests don't test slice explicitly but rather use it to perform the test misc_slice_tests = ( "builtin_range", + "bytearray1", "class_super", "containment", "errno1", @@ -573,6 +574,7 @@ def run_tests(pyb, tests, args, result_dir, num_threads=1): "memoryview_gc", "object1", "python34", + "string_format_modulo", "struct_endian", )