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