forked from OSchip/llvm-project
[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:
parent
bb7fb6d7b2
commit
1d64d69ab7
|
@ -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]
|
||||
|
|
Loading…
Reference in New Issue