[lldb/Reproducers] Skip lldb-vscode category when lldb-run-with-repro is set.

This skips all the lldb-vscode tests when running the test suite with
reproducers.
This commit is contained in:
Jonas Devlieghere 2020-05-21 14:52:12 -07:00
parent bb7fb6d7b2
commit 1d64d69ab7
1 changed files with 4 additions and 0 deletions

View File

@ -127,6 +127,10 @@ if config.filecheck:
if config.lldb_libs_dir:
dotest_cmd += ['--lldb-libs-dir', config.lldb_libs_dir]
if 'lldb-repro-capture' in config.available_features or \
'lldb-repro-replay' in config.available_features:
dotest_cmd += ['--skip-category=lldb-vscode']
if config.enabled_plugins:
for plugin in config.enabled_plugins:
dotest_cmd += ['--enable-plugin', plugin]