[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 08:10:11 PDT 2023


https://github.com/Michael137 updated https://github.com/llvm/llvm-project/pull/68970

>From 35a9c6ee8fae2281ac7234e16bb84b7b285ad749 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 1/2] [lldb][test] Temporarily disable
 TestQueueFromStdModule.py

Started failing since D101206 (`ba79fb2e1ff7130cde02fbbd325f0f96f8a522ca`),
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()
 

>From d358829a1c1020a1313325af7412f3cdc9db7359 Mon Sep 17 00:00:00 2001
From: Michael Buch <michaelbuch12 at gmail.com>
Date: Fri, 13 Oct 2023 11:46:16 +0100
Subject: [PATCH 2/2] fixup! darker format

---
 .../import-std-module/queue/TestQueueFromStdModule.py       | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

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 5f344a4f36224db..b08a53855e1db07 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,7 +10,11 @@
 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")
+    @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