[debuginfo-tests] r320076 - Revert "Temporarily pin tests to DWARF v2 until a more recent version of LLDB"

Adrian Prantl via llvm-commits llvm-commits at lists.llvm.org
Thu Dec 7 11:40:31 PST 2017


Author: adrian
Date: Thu Dec  7 11:40:31 2017
New Revision: 320076

URL: http://llvm.org/viewvc/llvm-project?rev=320076&view=rev
Log:
Revert "Temporarily pin tests to DWARF v2 until a more recent version of LLDB"

This reverts commit 319790.

We worked around the bug in LLVM instead.

Modified:
    debuginfo-tests/trunk/asan-blocks.c
    debuginfo-tests/trunk/asan.c
    debuginfo-tests/trunk/nrvo-string.cpp
    debuginfo-tests/trunk/safestack.c
    debuginfo-tests/trunk/stack-var.c

Modified: debuginfo-tests/trunk/asan-blocks.c
URL: http://llvm.org/viewvc/llvm-project/debuginfo-tests/trunk/asan-blocks.c?rev=320076&r1=320075&r2=320076&view=diff
==============================================================================
--- debuginfo-tests/trunk/asan-blocks.c (original)
+++ debuginfo-tests/trunk/asan-blocks.c Thu Dec  7 11:40:31 2017
@@ -1,4 +1,4 @@
-// RUN: %clang -fblocks %target_itanium_abi_host_triple -arch x86_64 %s -o %t.out -gdwarf-2 -fsanitize=address
+// RUN: %clang -fblocks %target_itanium_abi_host_triple -arch x86_64 %s -o %t.out -g -fsanitize=address
 // RUN: %test_debuginfo %s %t.out
 // FIXME: Remove system-darwin when we build BlocksRuntime everywhere.
 // REQUIRES: not_asan, system-darwin

Modified: debuginfo-tests/trunk/asan.c
URL: http://llvm.org/viewvc/llvm-project/debuginfo-tests/trunk/asan.c?rev=320076&r1=320075&r2=320076&view=diff
==============================================================================
--- debuginfo-tests/trunk/asan.c (original)
+++ debuginfo-tests/trunk/asan.c Thu Dec  7 11:40:31 2017
@@ -1,4 +1,4 @@
-// RUN: %clang -fblocks %target_itanium_abi_host_triple -arch x86_64 %s -o %t.out -gdwarf-2 -fsanitize=address
+// RUN: %clang -fblocks %target_itanium_abi_host_triple -arch x86_64 %s -o %t.out -g -fsanitize=address
 // RUN: %test_debuginfo %s %t.out
 // REQUIRES: not_asan
 //           Zorg configures the ASAN stage2 bots to not build the asan

Modified: debuginfo-tests/trunk/nrvo-string.cpp
URL: http://llvm.org/viewvc/llvm-project/debuginfo-tests/trunk/nrvo-string.cpp?rev=320076&r1=320075&r2=320076&view=diff
==============================================================================
--- debuginfo-tests/trunk/nrvo-string.cpp (original)
+++ debuginfo-tests/trunk/nrvo-string.cpp Thu Dec  7 11:40:31 2017
@@ -1,9 +1,9 @@
 // This ensures that DW_OP_deref is inserted when necessary, such as when NRVO
 // of a string object occurs in C++.
 //
-// RUN: %clangxx -O0 -fno-exceptions %target_itanium_abi_host_triple %s -o %t.out -gdwarf-2
+// RUN: %clangxx -O0 -fno-exceptions %target_itanium_abi_host_triple %s -o %t.out -g
 // RUN: %test_debuginfo %s %t.out
-// RUN: %clangxx -O1 -fno-exceptions %target_itanium_abi_host_triple %s -o %t.out -gdwarf-2
+// RUN: %clangxx -O1 -fno-exceptions %target_itanium_abi_host_triple %s -o %t.out -g
 // RUN: %test_debuginfo %s %t.out
 //
 // PR34513

Modified: debuginfo-tests/trunk/safestack.c
URL: http://llvm.org/viewvc/llvm-project/debuginfo-tests/trunk/safestack.c?rev=320076&r1=320075&r2=320076&view=diff
==============================================================================
--- debuginfo-tests/trunk/safestack.c (original)
+++ debuginfo-tests/trunk/safestack.c Thu Dec  7 11:40:31 2017
@@ -1,4 +1,4 @@
-// RUN: %clang %target_itanium_abi_host_triple -arch x86_64 %s -o %t.out -gdwarf-2 -fsanitize=safe-stack
+// RUN: %clang %target_itanium_abi_host_triple -arch x86_64 %s -o %t.out -g -fsanitize=safe-stack
 // RUN: %test_debuginfo %s %t.out
 // REQUIRES: not_asan
 //           Zorg configures the ASAN stage2 bots to not build the

Modified: debuginfo-tests/trunk/stack-var.c
URL: http://llvm.org/viewvc/llvm-project/debuginfo-tests/trunk/stack-var.c?rev=320076&r1=320075&r2=320076&view=diff
==============================================================================
--- debuginfo-tests/trunk/stack-var.c (original)
+++ debuginfo-tests/trunk/stack-var.c Thu Dec  7 11:40:31 2017
@@ -1,4 +1,4 @@
-// RUN: %clang %target_itanium_abi_host_triple %s -O -o %t.out -gdwarf-2
+// RUN: %clang %target_itanium_abi_host_triple %s -O -o %t.out -g
 // RUN: %test_debuginfo %s %t.out
 
 void __attribute__((noinline, optnone)) bar(int *test) {}




More information about the llvm-commits mailing list