Chris Bieneman | 4851558 | 2016-09-15 20:13:55 +0000 | [diff] [blame] | 1 | # 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 | |
| 6 | breakpoint set --file call-function.cpp --line 52 |
| 7 | run |
| 8 | breakpoint set --file call-function.cpp --line 14 |
| 9 | expression -i false -- returnsFive() |
| 10 | # CHECK: Execution was interrupted, reason: breakpoint |
| 11 | # CHECK: stop reason = User Expression thread plan |
Tim Hammerquist | 81dd7df | 2016-10-03 00:07:24 +0000 | [diff] [blame^] | 12 | # CHECK: Completed expression: (Five) $0 = (number = 5{{.*}}, name = "five") |