[Lldb-commits] [lldb] 74c5e47 - [lldb][test] Temporarily disable TestQueueFromStdModule.py (#68970)

via lldb-commits lldb-commits at lists.llvm.org
Fri Oct 13 08:26:56 PDT 2023


Author: Michael Buch
Date: 2023-10-13T16:26:51+01:00
New Revision: 74c5e474043daa7900686d0a210b8e03cebf9472

URL: https://github.com/llvm/llvm-project/commit/74c5e474043daa7900686d0a210b8e03cebf9472
DIFF: https://github.com/llvm/llvm-project/commit/74c5e474043daa7900686d0a210b8e03cebf9472.diff

LOG: [lldb][test] Temporarily disable TestQueueFromStdModule.py (#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.

Added: 
    

Modified: 
    lldb/test/API/commands/expression/import-std-module/queue/TestQueueFromStdModule.py

Removed: 
    


################################################################################
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..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,6 +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",
+    )
     def test(self):
         self.build()
 


        


More information about the lldb-commits mailing list