Skip to content

Commit b8ba963

Browse files
committed
[lldb] don't run TestUnwindFramelessFaulted.py on Linux
I thought I could call $(CPP) to preprocess the assembly file, but the aarch64-ubuntu bot runs this as clang -E and it issues a warning and no output file, apparently, build/bin/clang -E -o interrupt-and-trap-funcs.s /home/tcwg-buildbot/worker/lldb-aarch64-ubuntu/llvm-project/lldb/test/API/functionalities/unwind/frameless-faulted/interrupt-and-trap-funcs.s clang: warning: /home/tcwg-buildbot/worker/lldb-aarch64-ubuntu/llvm-project/lldb/test/API/functionalities/unwind/frameless-faulted/interrupt-and-trap-funcs.s: 'assembler' input unused [-Wunused-command-line-argument] /home/tcwg-buildbot/worker/lldb-aarch64-ubuntu/build/bin/clang -g -O0 -c -o interrupt-and-trap-funcs.o interrupt-and-trap-funcs.s clang: error: no such file or directory: 'interrupt-and-trap-funcs.s' clang: error: no input files
1 parent 30b428a commit b8ba963

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

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

0 commit comments

Comments
 (0)