Skip to content

Commit ecb3fd6

Browse files
committed
Skip tests on ASAN and MSAN sanitizers
1 parent fb5d432 commit ecb3fd6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Lib/test/test_crashers/__init__.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,9 @@
1616
infinite_loops = frozenset(["infinite_loop_re.py"])
1717

1818

19+
@support.skip_if_sanitizer(address=True, memory=True)
20+
@support.cpython_only
1921
class CrasherTest(unittest.TestCase):
20-
@support.cpython_only
2122
def test_crashers_crash(self):
2223
if support.verbose:
2324
print()

0 commit comments

Comments
 (0)