forked from OSchip/llvm-project
[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:
parent
0f8d40f0d6
commit
351823fbf1
|
@ -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',
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
std-module
|
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue