Skip to content

Commit b242150

Browse files
committed
Revert "[lldb][test] Re-enable TestQueueFromStdModule.py"
This reverts commit 2b4b3fd. Turns out the CI still fails with this test enabled: ``` 11:08:50 File "/Users/ec2-user/jenkins/workspace/llvm.org/as-lldb-cmake/llvm-project/lldb/test/API/commands/expression/import-std-module/queue/TestQueueFromStdModule.py", line 37, in test 11:08:50 self.expect_expr( 11:08:50 File "/Users/ec2-user/jenkins/workspace/llvm.org/as-lldb-cmake/llvm-project/lldb/packages/Python/lldbsuite/test/lldbtest.py", line 2571, in expect_expr 11:08:50 value_check.check_value(self, eval_result, str(eval_result)) 11:08:50 File "/Users/ec2-user/jenkins/workspace/llvm.org/as-lldb-cmake/llvm-project/lldb/packages/Python/lldbsuite/test/lldbtest.py", line 301, in check_value 11:08:50 test_base.assertSuccess(val.GetError()) 11:08:50 File "/Users/ec2-user/jenkins/workspace/llvm.org/as-lldb-cmake/llvm-project/lldb/packages/Python/lldbsuite/test/lldbtest.py", line 2606, in assertSuccess 11:08:50 self.fail(self._formatMessage(msg, "'{}' is not success".format(error))) 11:08:50 AssertionError: 'error: /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.2.sdk/usr/include/module.modulemap:93:11: header 'stdarg.h' not found 11:08:50 93 | header "stdarg.h" // note: supplied by the compiler 11:08:50 | ^ 11:08:50 /Users/ec2-user/jenkins/workspace/llvm.org/as-lldb-cmake/lldb-build/lib/clang/22/include/stdint.h:56:16: submodule of top-level module 'Darwin' implicitly imported here 11:08:50 56 | # include_next <stdint.h> 11:08:50 | ^ 11:08:50 error: While building module 'std' imported from <lldb wrapper prefix>:42: ```
1 parent 2b4b3fd commit b242150

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@
1010
class TestQueue(TestBase):
1111
@add_test_categories(["libc++"])
1212
@skipIf(compiler=no_match("clang"))
13+
@skipIf(
14+
compiler="clang",
15+
compiler_version=[">", "16.0"],
16+
bugnumber="https://github.com/llvm/llvm-project/issues/68968",
17+
)
1318
@skipIf(
1419
compiler="clang",
1520
compiler_version=["<", "17.0"],

0 commit comments

Comments
 (0)