brintos

brintos / llvm-project-archived public Read only

0
0
Text · 591 B · 579e398 Raw
13 lines · plain
1# Check that stop command source on error.2 3# RUN: not %lldb -x -b -o "command source -e 1 %s" 2>&1 | FileCheck %s --check-prefix STOP4# RUN: %lldb -x -b -o "command source -e 0 %s" 2>&1 | FileCheck %s --check-prefix CONTINUE5# RUN: not %lldb -x -b -o 'settings set interpreter.stop-command-source-on-error true' -o "command source %s" 2>&1 | FileCheck %s --check-prefix STOP6# RUN: %lldb -x -b -o 'settings set interpreter.stop-command-source-on-error false' -o "command source %s" 2>&1 | FileCheck %s --check-prefix CONTINUE7 8bogus9expression 10+110 11# CONTINUE: $0 = 1112# STOP-NOT: $0 = 1113