diff options
author | David Spickett <david.spickett@linaro.org> | 2025-09-18 11:01:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-09-18 11:01:19 +0100 |
commit | 1dc6bf3ff98c25dd29c6db3407c81d2064bc6977 (patch) | |
tree | 812477665027b21a0213930758fa96c0a8d989aa /lldb/packages/Python/lldbsuite | |
parent | 8fcb073e125dac1e049244cc6ee948223d267f76 (diff) | |
download | llvm-1dc6bf3ff98c25dd29c6db3407c81d2064bc6977.zip llvm-1dc6bf3ff98c25dd29c6db3407c81d2064bc6977.tar.gz llvm-1dc6bf3ff98c25dd29c6db3407c81d2064bc6977.tar.bz2 |
[lldb][lldb-dap] Disable all lldb-dap tests on Windows on Arm (#159542)
This reverts the following commits:
a0a82ee19d6f2ff1013407ba4c973bfe5428423f
757bb36a58c7d7151a28c6a5fc7caa2e1f44de87
83b48b13f3a70bf56053e92593270c519859cfd7
b45f1fb377636a34c01e34b89341c97d19975554
d2e153981e62fb2ea781ef456ff744f9893e0733
e2d1bbebbb099c7010a31fad62a9128166ef14a0
71cae12442e7476e6397fd73db05e127bfe2d035
7dd879bdc01297a551196a60bb5a5a90ca4dd1ed
f3b542e3148cfc244f63cb7c987ccf8ebc71942b
Where I had disabled specific tests due to them being flakey on our
Windows on Arm bot.
Clearly this strategy isn't working because
every day I see a new random test failing.
Until something can be done about this, disable
every lldb-dap test on Windows on Arm. The coverage we get is just not
worth spamming contributors
who have nothing to do with lldb-dap.
See #137660
Diffstat (limited to 'lldb/packages/Python/lldbsuite')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/tools/lldb-dap/lldbdap_testcase.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-dap/lldbdap_testcase.py b/lldb/packages/Python/lldbsuite/test/tools/lldb-dap/lldbdap_testcase.py index 882eec9..f7b1ed8 100644 --- a/lldb/packages/Python/lldbsuite/test/tools/lldb-dap/lldbdap_testcase.py +++ b/lldb/packages/Python/lldbsuite/test/tools/lldb-dap/lldbdap_testcase.py @@ -5,12 +5,16 @@ import uuid import dap_server from dap_server import Source +from lldbsuite.test.decorators import skipIf from lldbsuite.test.lldbtest import * from lldbsuite.test import lldbplatformutil import lldbgdbserverutils import base64 +# DAP tests as a whole have been flakey on the Windows on Arm bot. See: +# https://github.com/llvm/llvm-project/issues/137660 +@skipIf(oslist=["windows"], archs=["aarch64"]) class DAPTestCaseBase(TestBase): # set timeout based on whether ASAN was enabled or not. Increase # timeout by a factor of 10 if ASAN is enabled. |