[debuginfo-tests] 2665f3e - Unmask dexter debuginfo tests on Darwin

Jeremy Morse via llvm-commits llvm-commits at lists.llvm.org
Fri Nov 1 06:12:56 PDT 2019


Author: Jeremy Morse
Date: 2019-11-01T13:12:47Z
New Revision: 2665f3e4364f4c3aca155e16070315f059a21b41

URL: https://github.com/llvm/llvm-project/commit/2665f3e4364f4c3aca155e16070315f059a21b41
DIFF: https://github.com/llvm/llvm-project/commit/2665f3e4364f4c3aca155e16070315f059a21b41.diff

LOG: Unmask dexter debuginfo tests on Darwin

These tests almost certainly work on Darwin anyway, I just wanted to
keep things in a fixed, working configuration, while pushing Dexter
up.

I've left Windows unsupported as the dexter command line will need further
adjustment to run dbgeng. This can be abstracted through the %dexter
substitution, but is a task for another time.

Added: 
    

Modified: 
    debuginfo-tests/dexter-tests/aggregate-indirect-arg.cpp
    debuginfo-tests/dexter-tests/asan-deque.cpp
    debuginfo-tests/dexter-tests/asan.c
    debuginfo-tests/dexter-tests/ctor.cpp
    debuginfo-tests/dexter-tests/dbg-arg.c
    debuginfo-tests/dexter-tests/nrvo-string.cpp
    debuginfo-tests/dexter-tests/stack-var.c
    debuginfo-tests/dexter-tests/vla.c

Removed: 
    


################################################################################
diff  --git a/debuginfo-tests/dexter-tests/aggregate-indirect-arg.cpp b/debuginfo-tests/dexter-tests/aggregate-indirect-arg.cpp
index 4c495c9dee32..dce0302a83b3 100644
--- a/debuginfo-tests/dexter-tests/aggregate-indirect-arg.cpp
+++ b/debuginfo-tests/dexter-tests/aggregate-indirect-arg.cpp
@@ -1,4 +1,5 @@
-// REQUIRES: system-linux, lldb
+// REQUIRES: lldb
+// UNSUPPORTED: system-windows
 //
 // RUN: %dexter --fail-lt 1.0 -w \
 // RUN:     --builder 'clang' --debugger 'lldb' --cflags "-O0 -g" \

diff  --git a/debuginfo-tests/dexter-tests/asan-deque.cpp b/debuginfo-tests/dexter-tests/asan-deque.cpp
index 50fe16750487..83bb016005f3 100644
--- a/debuginfo-tests/dexter-tests/asan-deque.cpp
+++ b/debuginfo-tests/dexter-tests/asan-deque.cpp
@@ -1,4 +1,5 @@
-// REQUIRES: !asan, system-linux, lldb
+// REQUIRES: !asan, lldb
+// UNSUPPORTED: system-windows
 //           Zorg configures the ASAN stage2 bots to not build the asan
 //           compiler-rt. Only run this test on non-asanified configurations.
 // UNSUPPORTED: apple-lldb-pre-1000

diff  --git a/debuginfo-tests/dexter-tests/asan.c b/debuginfo-tests/dexter-tests/asan.c
index c7d5263efd35..5d0f08e6592e 100644
--- a/debuginfo-tests/dexter-tests/asan.c
+++ b/debuginfo-tests/dexter-tests/asan.c
@@ -1,4 +1,5 @@
-// REQUIRES: !asan, system-linux, lldb
+// REQUIRES: !asan, lldb
+// UNSUPPORTED: system-windows
 //           Zorg configures the ASAN stage2 bots to not build the asan
 //           compiler-rt. Only run this test on non-asanified configurations.
 //

diff  --git a/debuginfo-tests/dexter-tests/ctor.cpp b/debuginfo-tests/dexter-tests/ctor.cpp
index 77195d7d79ea..dee587b08a10 100644
--- a/debuginfo-tests/dexter-tests/ctor.cpp
+++ b/debuginfo-tests/dexter-tests/ctor.cpp
@@ -1,4 +1,5 @@
-// REQUIRES: system-linux, lldb
+// REQUIRES: lldb
+// UNSUPPORTED: system-windows
 //
 // RUN: %dexter --fail-lt 1.0 -w \
 // RUN:     --builder 'clang' --debugger 'lldb' --cflags "-O0 -glldb" -- %s

diff  --git a/debuginfo-tests/dexter-tests/dbg-arg.c b/debuginfo-tests/dexter-tests/dbg-arg.c
index 7d0ef7b6b70b..78800d3eae31 100644
--- a/debuginfo-tests/dexter-tests/dbg-arg.c
+++ b/debuginfo-tests/dexter-tests/dbg-arg.c
@@ -1,4 +1,5 @@
-// REQUIRES: system-linux, lldb
+// REQUIRES: lldb
+// UNSUPPORTED: system-windows
 //
 // This test case checks debug info during register moves for an argument.
 // RUN: %dexter --fail-lt 1.0 -w \

diff  --git a/debuginfo-tests/dexter-tests/nrvo-string.cpp b/debuginfo-tests/dexter-tests/nrvo-string.cpp
index 79561dc6e2f3..c33b01b13b51 100644
--- a/debuginfo-tests/dexter-tests/nrvo-string.cpp
+++ b/debuginfo-tests/dexter-tests/nrvo-string.cpp
@@ -2,7 +2,8 @@
 //     This ensures that DW_OP_deref is inserted when necessary, such as when
 //     NRVO of a string object occurs in C++.
 //
-// REQUIRES: !asan, system-linux, lldb
+// REQUIRES: !asan, lldb
+// UNSUPPORTED: system-windows
 //           Zorg configures the ASAN stage2 bots to not build the asan
 //           compiler-rt. Only run this test on non-asanified configurations.
 //

diff  --git a/debuginfo-tests/dexter-tests/stack-var.c b/debuginfo-tests/dexter-tests/stack-var.c
index 15321b0ab146..144a65fb04bf 100644
--- a/debuginfo-tests/dexter-tests/stack-var.c
+++ b/debuginfo-tests/dexter-tests/stack-var.c
@@ -1,4 +1,5 @@
-// REQUIRES: system-linux, lldb
+// REQUIRES: lldb
+// UNSUPPORTED: system-windows
 //
 // RUN: %dexter --fail-lt 1.0 -w \
 // RUN:     --builder clang-c --debugger 'lldb' --cflags "-O -glldb" -- %s

diff  --git a/debuginfo-tests/dexter-tests/vla.c b/debuginfo-tests/dexter-tests/vla.c
index a06bf3c81702..5cf2ddfc3adb 100644
--- a/debuginfo-tests/dexter-tests/vla.c
+++ b/debuginfo-tests/dexter-tests/vla.c
@@ -1,5 +1,6 @@
 // This test case verifies the debug location for variable-length arrays.
-// REQUIRES: system-linux, lldb
+// REQUIRES: lldb
+// UNSUPPORTED: system-windows
 //
 // RUN: %dexter --fail-lt 1.0 -w \
 // RUN:     --builder clang-c --debugger 'lldb' --cflags "-O0 -glldb" -- %s


        


More information about the llvm-commits mailing list