Skip to content

Commit 8aa5e0e

Browse files
committed
[LLDB] Update reason for why tests are disabled
1 parent 85fdab3 commit 8aa5e0e

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

lldb/test/API/functionalities/asan/TestMemoryHistory.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def test(self):
1919
self.asan_tests()
2020

2121
@skipIf(oslist=no_match(["macosx"]))
22-
@skipIf(bugnumber="rdar://144997976")
22+
@skipIf(bugnumber="rdar://109913184&143590169")
2323
def test_libsanitizers_asan(self):
2424
try:
2525
self.build(make_targets=["libsanitizers"])
@@ -39,9 +39,7 @@ def setUp(self):
3939
def libsanitizer_tests(self):
4040
target = self.createTestTarget()
4141

42-
self.runCmd(
43-
"env SanitizersAddress=1 MallocSanitizerZone=1 MallocSecureAllocator=0"
44-
)
42+
self.runCmd("env SanitizersAddress=1 MallocSanitizerZone=1")
4543

4644
self.runCmd("run")
4745

lldb/test/API/functionalities/asan/TestReportData.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def test(self):
2020
self.asan_tests()
2121

2222
@skipIf(oslist=no_match(["macosx"]))
23-
@skipIf(bugnumber="rdar://144997976")
23+
@skipIf(bugnumber="rdar://109913184&143590169")
2424
def test_libsanitizers_asan(self):
2525
try:
2626
self.build(make_targets=["libsanitizers"])
@@ -42,9 +42,7 @@ def asan_tests(self, libsanitizers=False):
4242
target = self.createTestTarget()
4343

4444
if libsanitizers:
45-
self.runCmd(
46-
"env SanitizersAddress=1 MallocSanitizerZone=1 MallocSecureAllocator=0"
47-
)
45+
self.runCmd("env SanitizersAddress=1 MallocSanitizerZone=1")
4846
else:
4947
self.registerSanitizerLibrariesWithTarget(target)
5048

0 commit comments

Comments
 (0)