polyakov.alex created this revision. polyakov.alex added reviewers: aprantl, stella.stamenova. Herald added subscribers: llvm-commits, ki.stfu.
The default name for a compiler output on Linux is `a.out`, while on Windows it's `a.exe`. But if we add option `-o a.exe`, the compiler will create the executable `a.exe` on the both systems. Repository: rL LLVM https://reviews.llvm.org/D47679 Files: lit/tools/lldb-mi/breakpoint/break-insert.test Index: lit/tools/lldb-mi/breakpoint/break-insert.test =================================================================== --- lit/tools/lldb-mi/breakpoint/break-insert.test +++ lit/tools/lldb-mi/breakpoint/break-insert.test @@ -1,16 +1,12 @@ -# REQUIRES: nowindows -# -> llvm.org/pr24452 -# Rather than XFAILing the test, skip it on Windows because it hangs - -# RUN: %cc %p/inputs/break-insert.c -g +# RUN: %cc -o a.exe %p/inputs/break-insert.c -g # RUN: %lldbmi < %s | FileCheck %s # Test that a breakpoint can be inserted before creating a target. -break-insert breakpoint # CHECK: ^done,bkpt={number="1" --file-exec-and-symbols a.out +-file-exec-and-symbols a.exe # CHECK: ^done -exec-run
Index: lit/tools/lldb-mi/breakpoint/break-insert.test =================================================================== --- lit/tools/lldb-mi/breakpoint/break-insert.test +++ lit/tools/lldb-mi/breakpoint/break-insert.test @@ -1,16 +1,12 @@ -# REQUIRES: nowindows -# -> llvm.org/pr24452 -# Rather than XFAILing the test, skip it on Windows because it hangs - -# RUN: %cc %p/inputs/break-insert.c -g +# RUN: %cc -o a.exe %p/inputs/break-insert.c -g # RUN: %lldbmi < %s | FileCheck %s # Test that a breakpoint can be inserted before creating a target. -break-insert breakpoint # CHECK: ^done,bkpt={number="1" --file-exec-and-symbols a.out +-file-exec-and-symbols a.exe # CHECK: ^done -exec-run
_______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits