1 // XFAIL:*
2 // This test started failing recently for unknown reasons.
3 
4 // REQUIRES: lldb
5 // UNSUPPORTED: system-windows
6 //
7 // RUN: %dexter --fail-lt 1.0 -w \
8 // RUN:     --builder 'clang' --debugger 'lldb' \
9 // RUN:     --cflags "-O0 -glldb -fdebug-prefix-map=%S=/changed" \
10 // RUN:     --source-root-dir=%S --debugger-use-relative-paths -- %s
11 
12 #include <stdio.h>
13 int main() {
14   int x = 42;
15   printf("hello world: %d\n", x); // DexLabel('check')
16 }
17 
18 // DexExpectWatchValue('x', 42, on_line=ref('check'))
19