aboutsummaryrefslogtreecommitdiff
path: root/debuginfo-tests
diff options
context:
space:
mode:
authorDavide Italiano <davide@freebsd.org>2018-02-26 20:56:45 +0000
committerDavide Italiano <davide@freebsd.org>2018-02-26 20:56:45 +0000
commit58c707d1ad44bad8a7b8aa5e5b39391200378c99 (patch)
treef8d86eac50d3561e19ebc184a9731d9606c5bc30 /debuginfo-tests
parentc1fcd97ede0da50a3a2ec15b243fb5a8e71ef8a7 (diff)
[Darwin] Specify DWARF 2/4 when running apple accelerator tests.
These sections will be retired. Also, explicitly list llvm-objdump as a dependency. This should've been done in the previous commit, but I failed to squash the two changes together. Thanks to Adrian for pointing the first problem out in a comment. llvm-svn: 326121
Diffstat (limited to 'debuginfo-tests')
-rw-r--r--debuginfo-tests/CMakeLists.txt1
-rw-r--r--debuginfo-tests/apple-accel.cpp6
2 files changed, 6 insertions, 1 deletions
diff --git a/debuginfo-tests/CMakeLists.txt b/debuginfo-tests/CMakeLists.txt
index 87260f10cc9e..fbab61c527da 100644
--- a/debuginfo-tests/CMakeLists.txt
+++ b/debuginfo-tests/CMakeLists.txt
@@ -9,6 +9,7 @@ set(DEBUGINFO_TEST_DEPS
clang
FileCheck
count
+ llvm-objdump
not
)
diff --git a/debuginfo-tests/apple-accel.cpp b/debuginfo-tests/apple-accel.cpp
index e64422119eca..9c5e08e40d10 100644
--- a/debuginfo-tests/apple-accel.cpp
+++ b/debuginfo-tests/apple-accel.cpp
@@ -1,7 +1,11 @@
// REQUIRES: system-darwin
// Test that clang produces the __apple accelerator tables,
// e.g., __apple_types, correctly.
-// RUN: %clang %s %target_itanium_abi_host_triple -O0 -c -g -o %t-ex
+// These sections are going to be retired in DWARF 5, so we hardcode
+// the DWARF version in the tests.
+// RUN: %clang %s %target_itanium_abi_host_triple -gdwarf-2 -O0 -c -g -o %t-ex
+// RUN: llvm-objdump -section-headers %t-ex | FileCheck %s
+// RUN: %clang %s %target_itanium_abi_host_triple -gdwarf-4 -O0 -c -g -o %t-ex
// RUN: llvm-objdump -section-headers %t-ex | FileCheck %s
int main (int argc, char const *argv[]) { return argc; }