[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / lldb / test / Shell / Settings / TestStopCommandSourceOnError.test
blobf99c9c204c19c5a5cabb7aa2e1cf0cce5e5d6fba
1 # Modifying the interpreter settings is tricky because they don't take effect
2 # until we create a new command interpreter, which should be merely an
3 # implementation detail. This leads to confusing and unexpected scenarios.
5 # Below are a few scenarios that we should fix.
7 # CONTINUE: 123456789
8 # STOP-NOT: 111111111
9 # STOP-NOT: 123456789
11 # FIXME: Should stop
12 # RUN: %lldb -b -o 'settings set interpreter.stop-command-source-on-error false' -s %S/Inputs/StopCommandSource.in | FileCheck %s --check-prefix CONTINUE
14 # FIXME: Should continue
15 # RUN: not %lldb -b -s %S/Inputs/DontStopCommandSource.in -o 'bogus' -o 'expression 111100000 + 11111' | FileCheck %s --check-prefix STOP
17 # FIXME: Should continue
18 # RUN: not %lldb -b -o 'settings set interpreter.stop-command-source-on-error false' -o 'bogus' -o 'expression 123400000 + 56789'  | FileCheck %s --check-prefix STOP
20 # FIXME: Should continue
21 # RUN: not %lldb -b -s %S/Inputs/DontStopCommandSource.in | FileCheck %s --check-prefix STOP
23 # FIXME: Should continue
24 # RUN: not %lldb -b -o 'settings set interpreter.stop-command-source-on-error true' -s %S/Inputs/DontStopCommandSource.in | FileCheck %s --check-prefix STOP