[lldb/Test] Add 'std-module' category and skip them with reproducers

These tests are flaky on the reproducer bot. I suspect it has something
to do with the module cache. Skipping the whole category while I
investigate the issue.
This commit is contained in:
Jonas Devlieghere 2020-06-10 14:58:06 -07:00
parent 0f8d40f0d6
commit 351823fbf1
3 changed files with 3 additions and 1 deletions

View File

@ -35,6 +35,7 @@ all_categories = {
'stresstest': 'Tests related to stressing lldb limits',
'flakey': 'Flakey test cases, i.e. tests that do not reliably pass at each execution',
'darwin-log': 'Darwin log tests',
'std-module': 'Tests related to importing the std module',
'watchpoint': 'Watchpoint-related tests',
'lldb-vscode': 'Visual Studio Code debug adaptor tests',
'lldb-server': 'Tests related to lldb-server',

View File

@ -0,0 +1 @@
std-module

View File

@ -129,7 +129,7 @@ if 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']
dotest_cmd += ['--skip-category=lldb-vscode', '--skip-category=std-module']
if config.enabled_plugins:
for plugin in config.enabled_plugins: