Skip to content

Commit

Permalink
Disable tests on non-x86 Linux platforms, as they appear to fail on A…
Browse files Browse the repository at this point in the history
…Arch64/Arm buildbots
  • Loading branch information
kevinfrei committed Mar 27, 2024
1 parent eedc7cc commit 11224b8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion lldb/test/API/debuginfod/Normal/TestDebuginfod.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
"""


@skipUnlessPlatform(["linux", "freebsd"])
# It looks like Linux-AArch64 doesn't support build-id's on the LLDB builtbots
@skipIf(oslist=no_match(["linux"]), archs=no_match(["i386", "x86_64"]))
class DebugInfodTests(TestBase):
# No need to try every flavor of debug inf.
NO_DEBUG_INFO_TESTCASE = True
Expand Down
3 changes: 2 additions & 1 deletion lldb/test/API/debuginfod/SplitDWARF/TestDebuginfodDWP.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@
"""


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

0 comments on commit 11224b8

Please sign in to comment.