Skip to content

Commit e966de2

Browse files
authored
Merge pull request #1516 from dcci/tsan-macos-arm64
[Test] TSan tests work on Apple Silicon, skip them based on platform,…
2 parents 58f35ca + a9a054f commit e966de2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lldb/test/API/functionalities/tsan/swift-access-race/TestTsanSwiftAccessRace.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class TsanSwiftAccessRaceTestCase(lldbtest.TestBase):
3030
@skipIfLinux
3131
@skipUnlessSwiftThreadSanitizer
3232
@skipIfAsan # This test does not behave reliable with an ASANified LLDB.
33-
@expectedFailureAll(archs=['arm64'])
33+
@skipIfDarwinEmbedded
3434
def test_tsan_swift(self):
3535
self.build()
3636
self.do_test()

lldb/test/API/functionalities/tsan/swift/TestTsanSwift.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class TsanSwiftTestCase(lldbtest.TestBase):
2929
@skipIfLinux
3030
@skipUnlessSwiftThreadSanitizer
3131
@skipIfAsan # This test does not behave reliable with an ASANified LLDB.
32-
@expectedFailureAll(archs=['arm64'])
32+
@skipIfDarwinEmbedded
3333
def test_tsan_swift(self):
3434
self.build()
3535
self.do_test()

0 commit comments

Comments
 (0)