[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 03:46:28 PDT 2023
https://github.com/Michael137 updated https://github.com/llvm/llvm-project/pull/68970
>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 1/2] [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()
>From ae9c1d1539d70abafdf635fe4b20390e34e398ea 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