Files
clang-p2996/lldb/test/Shell/SymbolFile/DWARF/debug-names-compressed.cpp
Pavel Labath ee05138515 [lldb/test] Revert changes to debug-names-compressed.cpp
With the changes in 15a6df52ef, the test is failing in some
configurations. Reverting while I investigate
2020-01-16 18:56:26 +01:00

15 lines
511 B
C++

// Test for a bug where we crashed while processing a compressed debug_names
// section (use after free).
// REQUIRES: lld, zlib
// RUN: %clang -g -c -o %t.o --target=x86_64-pc-linux -mllvm -accel-tables=Dwarf %s
// RUN: ld.lld %t.o -o %t --compress-debug-sections=zlib
// RUN: lldb-test symbols --find=variable --name=foo %t | FileCheck %s
// CHECK: Found 1 variables:
int foo;
// ONE-DAG: name = "foo", type = {{.*}} (int), {{.*}} decl = debug-names-compressed.cpp:[[@LINE-1]]
extern "C" void _start() {}