llvm-project/lldb/test/Shell/Settings/TestFrameFormatFunctionQualifiersObjC.test
Michael Buch 7581aa1d8e [lldb][test] Make sure we compile FrameFormat tests with DWARF
These don't make sense for PDB on Windows
2025-04-26 11:28:32 +01:00

25 lines
572 B
Plaintext

# Check that we have an appropriate fallback for ${function.qualifiers} in
# languages that don't implement this frame format variable (in this case Objective-C).
# RUN: split-file %s %t
# RUN: %clang_host -g -gdwarf %t/main.m -o %t.objc.out
# RUN: %lldb -x -b -s %t/commands.input %t.objc.out -o exit 2>&1 \
# RUN: | FileCheck %s
#--- main.m
int foo() {}
int bar() { foo(); }
int main() { return bar(); }
#--- commands.input
settings set -f frame-format "custom-frame '${function.qualifiers}'\n"
break set -n foo
run
bt
# CHECK: bt
# CHECK-NOT: custom-frame