-
Notifications
You must be signed in to change notification settings - Fork 15.4k
disable test on older compilers #136186
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
disable test on older compilers #136186
Conversation
|
@llvm/pr-subscribers-lldb Author: Shubham Sandeep Rastogi (rastogishubham) ChangesFull diff: https://github.com/llvm/llvm-project/pull/136186.diff 1 Files Affected:
diff --git a/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx-simulators/invalid-vector/TestDataFormatterLibcxxInvalidVectorSimulator.py b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx-simulators/invalid-vector/TestDataFormatterLibcxxInvalidVectorSimulator.py
index 3f58018b0fbd9..1a23d9a19fe19 100644
--- a/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx-simulators/invalid-vector/TestDataFormatterLibcxxInvalidVectorSimulator.py
+++ b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx-simulators/invalid-vector/TestDataFormatterLibcxxInvalidVectorSimulator.py
@@ -14,7 +14,7 @@ class LibcxxInvalidVectorDataFormatterSimulatorTestCase(TestBase):
NO_DEBUG_INFO_TESTCASE = True
- @skipIf(compiler="clang", compiler_version=['<', '15.0.1'])
+ @skipIf(compiler="clang", compiler_version=['<', '18.0'])
def test(self):
self.build()
lldbutil.run_to_source_breakpoint(self, "return 0", lldb.SBFileSpec("main.cpp"))
|
You can test this locally with the following command:darker --check --diff -r HEAD~1...HEAD lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx-simulators/invalid-vector/TestDataFormatterLibcxxInvalidVectorSimulator.pyView the diff from darker here.--- TestDataFormatterLibcxxInvalidVectorSimulator.py 2025-04-17 19:31:03.000000 +0000
+++ TestDataFormatterLibcxxInvalidVectorSimulator.py 2025-04-17 19:34:23.090118 +0000
@@ -11,12 +11,11 @@
class LibcxxInvalidVectorDataFormatterSimulatorTestCase(TestBase):
NO_DEBUG_INFO_TESTCASE = True
-
- @skipIf(compiler="clang", compiler_version=['<', '18.0'])
+ @skipIf(compiler="clang", compiler_version=["<", "18.0"])
def test(self):
self.build()
lldbutil.run_to_source_breakpoint(self, "return 0", lldb.SBFileSpec("main.cpp"))
self.expect(
|
|
LLVM Buildbot has detected a new failure on builder Full details are available at: https://lab.llvm.org/buildbot/#/builders/162/builds/20449 Here is the relevant piece of the build log for the reference |
No description provided.