Files
clang-p2996/lldb/test/Shell/SymbolFile/DWARF/dwarf5-lazy-dwo.c
Raphael Isemann 7377997134 [lldb] Rework 'lldb' substitution workaround in dwarf5-lazy-dwo.c
This test is specifying the lldb log channel via `ll""db` which only really works
because the command parser ends up parsing that as `lldb`. Just putting the
channel name in quotes is enough to avoid the lldb command substitution and
doesn't rely on this weird parser behaviour.
2021-08-11 12:12:25 +02:00

34 lines
960 B
C

// Test we load dwo information lazily.
// -gsplit-dwarf is supported only on Linux.
// REQUIRES: system-linux
// RUN: %clang_host %s -fno-standalone-debug -g \
// RUN: -gdwarf-5 -gpubnames -gsplit-dwarf -c -o %t1.o -DONE
// RUN: %clang_host %s -fno-standalone-debug -g \
// RUN: -gdwarf-5 -gpubnames -gsplit-dwarf -c -o %t2.o -DTWO
// RUN: %clang_host %t1.o %t2.o -o %t
// RUN: %lldb %t -o "log enable 'lldb' object" -o "settings set stop-line-count-before 0" \
// RUN: -o "b main" -o "run" -o "image lookup -n main -v" -b | FileCheck %s
// CHECK-NOT: 2.dwo,
// CHECK: (lldb) b main
// CHECK-NOT: 2.dwo,
// CHECK: 1.dwo,
// CHECK-NOT: 2.dwo,
// CHECK: (lldb) run
// CHECK-NOT: 2.dwo,
// CHECK: stop reason = breakpoint
// CHECK-NOT: 2.dwo,
// CHECK: (lldb) image lookup
// CHECK-NOT: 2.dwo,
// CHECK: CompileUnit: id =
// CHECK-SAME: /dwarf5-lazy-dwo.c", language = "c99"
// CHECK-NOT: 2.dwo,
#ifdef ONE
int main() { return 0; }
#else
int x;
#endif