Skip to content

Commit 76f0f4c

Browse files
committed
Stop running test on Linux for now
Failed at compile time lldb-aarch64-ubuntu bot. It did clang -E -o interrupt-and-trap-funcs.s interrupt-and-trap-funcs.c and that added a bunch of standard C header typedefs to the output .s file which then turn into compile errors when it tries to compile the .s file as assembly. Never saw that behavior in my testing on an ubuntu 24.04 system. It would have been nice to have the test run on Linux as well as Darwin, but it's not essential.
1 parent fef1456 commit 76f0f4c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/test/API/functionalities/unwind/frameless-faulted/TestUnwindFramelessFaulted.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
class TestUnwindFramelessFaulted(TestBase):
1111
NO_DEBUG_INFO_TESTCASE = True
1212

13-
@skipIf(oslist=no_match([lldbplatformutil.getDarwinOSTriples(), "linux"]))
13+
@skipIf(oslist=no_match([lldbplatformutil.getDarwinOSTriples()]))
1414
@skipIf(archs=no_match(["aarch64", "arm64", "arm64e"]))
1515
def test_frameless_faulted_unwind(self):
1616
self.build()

0 commit comments

Comments
 (0)