Skip to content

Commit ed4b77f

Browse files
Kevin Freikevinfrei
Kevin Frei
authored andcommitted
Disable tests on non-x86 Linux platforms, as they appear to fail on AArch64/Arm buildbots
1 parent 0a79b9a commit ed4b77f

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

lldb/test/API/debuginfod/Normal/TestDebuginfod.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@
1818
"""
1919

2020

21-
@skipUnlessPlatform(["linux", "freebsd"])
21+
# It looks like Linux-AArch64 doesn't support build-id's on the LLDB builtbots
22+
@skipIf(oslist=no_match(["linux"]), archs=no_match(["i386", "x86_64"]))
2223
class DebugInfodTests(TestBase):
2324
# No need to try every flavor of debug inf.
2425
NO_DEBUG_INFO_TESTCASE = True

lldb/test/API/debuginfod/SplitDWARF/TestDebuginfodDWP.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@
2121
"""
2222

2323

24-
@skipUnlessPlatform(["linux", "freebsd"])
24+
# It looks like Linux-AArch64 doesn't support build-id's on the LLDB builtbots
25+
@skipIf(oslist=no_match(["linux"]), archs=no_match(["i386", "x86_64"]))
2526
class DebugInfodDWPTests(TestBase):
2627
# No need to try every flavor of debug inf.
2728
NO_DEBUG_INFO_TESTCASE = True

0 commit comments

Comments
 (0)