[Lldb-commits] [lldb] [lldb][test] Temporarily disable TestQueueFromStdModule.py (PR #68970)
Michael Buch via lldb-commits
lldb-commits at lists.llvm.org
Fri Oct 13 02:48:33 PDT 2023
https://github.com/Michael137 created https://github.com/llvm/llvm-project/pull/68970
Started failing since D101206, but root-cause is unclear. It's definitely not an issue with th libc++ patch itself however. So disable the test until we know what's going on.
>From 88007827eb5d2ffda60a127e664c00b921875d04 Mon Sep 17 00:00:00 2001
From: Michael Buch <michaelbuch12 at gmail.com>
Date: Fri, 13 Oct 2023 10:46:42 +0100
Subject: [PATCH] [lldb][test] Temporarily disable TestQueueFromStdModule.py
Started failing since D101206, but root-cause is unclear.
It's definitely not an issue with th libc++ patch itself
however. So disable the test until we know what's going on.
---
.../expression/import-std-module/queue/TestQueueFromStdModule.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/lldb/test/API/commands/expression/import-std-module/queue/TestQueueFromStdModule.py b/lldb/test/API/commands/expression/import-std-module/queue/TestQueueFromStdModule.py
index 84e8e3cfb86d6fd..5f344a4f36224db 100644
--- a/lldb/test/API/commands/expression/import-std-module/queue/TestQueueFromStdModule.py
+++ b/lldb/test/API/commands/expression/import-std-module/queue/TestQueueFromStdModule.py
@@ -10,6 +10,7 @@
class TestQueue(TestBase):
@add_test_categories(["libc++"])
@skipIf(compiler=no_match("clang"))
+ @skipIf(compiler="clang", compiler_version=[">", "16.0"], bugnumber="https://github.com/llvm/llvm-project/issues/68968")
def test(self):
self.build()
More information about the lldb-commits
mailing list