Skip to content

Commit 30b428a

Browse files
committed
[lldb] try re-enabling TestUnwindFramelessFaulted.py
on Linux with a small change to the Makefile to make preprocessing the assembly code work.
1 parent 5f41928 commit 30b428a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lldb/test/API/functionalities/unwind/frameless-faulted/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
C_SOURCES := main.c
22

33
interrupt-and-trap-funcs.o: interrupt-and-trap-funcs.s
4-
$(CC) $(CFLAGS) -E -o interrupt-and-trap-funcs.s $(SRCDIR)/interrupt-and-trap-funcs.s
4+
$(CPP) -o interrupt-and-trap-funcs.s $(SRCDIR)/interrupt-and-trap-funcs.s
55
$(CC) $(CFLAGS) -c -o interrupt-and-trap-funcs.o interrupt-and-trap-funcs.s
66

77
include Makefile.rules

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()]))
13+
@skipIf(oslist=no_match([lldbplatformutil.getDarwinOSTriples(), "linux"]))
1414
@skipIf(archs=no_match(["aarch64", "arm64", "arm64e"]))
1515

1616
# The static linker in Xcode 15.0-15.2 on macOS 14 will mislink

0 commit comments

Comments
 (0)