[Lldb-commits] [lldb] Disable TestUseSourceCache on Windows (PR #97324)
via lldb-commits
lldb-commits at lists.llvm.org
Mon Jul 1 10:22:54 PDT 2024
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-lldb
Author: Kendal Harland (kendalharland)
<details>
<summary>Changes</summary>
This test also fails on Windows amd64, although it is only disabled for aarch64.
---
Full diff: https://github.com/llvm/llvm-project/pull/97324.diff
1 Files Affected:
- (modified) lldb/test/API/commands/settings/use_source_cache/TestUseSourceCache.py (+1-1)
``````````diff
diff --git a/lldb/test/API/commands/settings/use_source_cache/TestUseSourceCache.py b/lldb/test/API/commands/settings/use_source_cache/TestUseSourceCache.py
index c54345af4994c..421599080a9e5 100644
--- a/lldb/test/API/commands/settings/use_source_cache/TestUseSourceCache.py
+++ b/lldb/test/API/commands/settings/use_source_cache/TestUseSourceCache.py
@@ -18,7 +18,7 @@ def test_set_use_source_cache_false(self):
self.set_use_source_cache_and_test(False)
@skipIf(hostoslist=no_match(["windows"]))
- @skipIf(oslist=["windows"], archs=["aarch64"]) # Fails on windows 11
+ @skipIf(oslist=["windows"]) # 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)
``````````
</details>
https://github.com/llvm/llvm-project/pull/97324
More information about the lldb-commits
mailing list