blob: 263fa2a6f59a5d7bdd4a1710dc2141f4e2eb8d6b [file] [log] [blame]
Chris Bieneman48515582016-09-15 20:13:55 +00001# XFAIL: windows
2# -> llvm.org/pr24489
3
4# RUN: %cxx %p/Inputs/call-function.cpp -g -o %t && %lldb -b -s %s -o continue -o "thread list" -- %t 2>&1 | FileCheck %s
5
6breakpoint set --file call-function.cpp --line 52
7run
8breakpoint set --file call-function.cpp --line 14
9expression -i false -- returnsFive()
10# CHECK: Execution was interrupted, reason: breakpoint
11# CHECK: stop reason = User Expression thread plan
Tim Hammerquist81dd7df2016-10-03 00:07:24 +000012# CHECK: Completed expression: (Five) $0 = (number = 5{{.*}}, name = "five")