aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/Shell/Settings/TestFrameFormatFunctionFormattedArgumentsObjC.test
blob: c9da1d4bd7772b52828aa4aad5906a2ede185b8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# UNSUPPORTED: system-windows

# Check that we have an appropriate fallback for ${function.formatted-arguments} 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 func() {}
int bar() { func(); }

int main() { return bar(); }

#--- commands.input
settings set -f frame-format "custom-frame '${function.formatted-arguments}'\n"
break set -n func

run
bt

# CHECK: bt
# CHECK-NOT: custom-frame