[LLDB] Skip buildbot failures AArch64/Windows

TestInlineStepping.py is flaky while TestUseSourceCache.py fails on
Windows 11 only. Marked them skipped to make buildbot happy.
This commit is contained in:
Muhammad Omair Javaid
2022-08-02 16:57:05 +05:00
parent 008ea1c201
commit a1bf0c0894
2 changed files with 2 additions and 0 deletions

View File

@@ -17,6 +17,7 @@ class SettingsUseSourceCacheTestCase(TestBase):
self.set_use_source_cache_and_test(False)
@skipIf(hostoslist=no_match(["windows"]))
@skipIf(oslist=['windows'], archs=['aarch64']) # Fails on windows 11
def test_set_use_source_cache_true(self):
"""Test that after 'set use-source-cache false', files are locked."""
self.set_use_source_cache_and_test(True)

View File

@@ -11,6 +11,7 @@ from lldbsuite.test import lldbutil
class TestInlineStepping(TestBase):
@add_test_categories(['pyapi'])
@skipIf(oslist=['windows'], archs=['aarch64']) # Flaky on buildbot
@expectedFailureAll(
compiler="icc",
bugnumber="# Not really a bug. ICC combines two inlined functions.")