From 1d64d69ab701d9524ee6871e93a2a2f8195fa798 Mon Sep 17 00:00:00 2001 From: Jonas Devlieghere Date: Thu, 21 May 2020 14:52:12 -0700 Subject: [PATCH] [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. --- lldb/test/API/lit.cfg.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lldb/test/API/lit.cfg.py b/lldb/test/API/lit.cfg.py index 662da7d..e96c1c7 100644 --- a/lldb/test/API/lit.cfg.py +++ b/lldb/test/API/lit.cfg.py @@ -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] -- 2.7.4