[lldb/Reproducer] Mark some driver tests as unsupported for lldb-repro

These test are checking for diagnostics printed by the driver. During
replay we only replay the SB API calls made by the driver, so it's
expected that these messages aren't displayed.
This commit is contained in:
Jonas Devlieghere 2020-01-22 16:53:09 -08:00
parent 39ae86ab72
commit 83a093b8ec
4 changed files with 8 additions and 0 deletions

View File

@ -1,4 +1,6 @@
# REQUIRES: python
# UNSUPPORTED: lldb-repro
#
# RUN: mkdir -p %t.root
# RUN: mkdir -p %t.home
# RUN: cp %S/Inputs/.lldbinit %t.root

View File

@ -1,2 +1,4 @@
# UNSUPPORTED: lldb-repro
#
# RUN: not %lldb -c /bogus/path 2>&1 | FileCheck %s
# CHECK: error: file specified in --core (-c) option doesn't exist

View File

@ -1,2 +1,4 @@
# UNSUPPORTED: lldb-repro
#
# RUN: not %lldb -f /bogus/path 2>&1 | FileCheck %s
# CHECK: error: file specified in --file (-f) option doesn't exist

View File

@ -1,3 +1,5 @@
# UNSUPPORTED: lldb-repro
#
# RUN: echo ':quit' | %lldb -x --repl -O 'expr 42' -S %S/Inputs/Print2.in -o 'expr 999999' -s %s 2>&1 | FileCheck %s
# CHECK: {{w}}arning: commands specified to run after file load (via -o or -s) are ignored in REPL mode
# CHECK: (int) $0 = 42