xref: /llvm-project/lldb/test/Shell/SymbolFile/DWARF/x86/dwo-not-found-warning.cpp (revision 8f6ee17f22a7575671ad1581231f29947a6a280a)
1 // RUN: %clang --target=x86_64-pc-linux -g -gsplit-dwarf -c %s -o %t.o
2 // RUN: rm %t.dwo
3 // RUN: %lldb %t.o -o "br set -n main" -o exit 2>&1 | FileCheck %s
4 
5 // CHECK: warning: {{.*}} unable to locate separate debug file (dwo, dwp). Debugging will be degraded.
6 
main()7 int main() { return 47; }
8