File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed
graalpython/lib-python/3/test Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -36,3 +36,13 @@ selector = [
36
36
' test_multiprocessing_spawn' ,
37
37
' test_multiprocessing_main_handling' ,
38
38
]
39
+
40
+
41
+ [[test_rules ]]
42
+ exclude_on = [' graalpy' ]
43
+ selector = [
44
+ # Tests for CPython-specific bytecode optimizations. Unapplicable to GraalPy and prone to breaking on random bytecode changes
45
+ ' test_peepholer' ,
46
+ # We don't have fork, so although we pass surprisingly many tests in there, it's not going to cover anything useful
47
+ ' test_multiprocessing_fork' ,
48
+ ]
Original file line number Diff line number Diff line change @@ -519,8 +519,6 @@ def update_unittest_tags(args):
519
519
darwin_tags = _fetch_tags_for_platform (parsed_args , 'darwin' )
520
520
521
521
tag_exclusions = [
522
- # Tests for bytecode optimizations. We don't have the same bytecode, ignore the whole suite
523
- 'graalpython.lib-python.3.test.test_peepholer.*' ,
524
522
# This test times out in the gate even though it succeeds locally and in the retagger. Race condition?
525
523
'graalpython.lib-python.3.test.test_cprofile.CProfileTest.test_run_profile_as_module' ,
526
524
# The following two try to read bytecode and fail randomly as our co_code is changing
You can’t perform that action at this time.
0 commit comments