[Lldb-commits] [PATCH] D131741: [lldb] Skip target variable tests on Darwin because of chained fixups
Jonas Devlieghere via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Fri Aug 12 10:23:52 PDT 2022
This revision was automatically updated to reflect the committed changes.
Closed by commit rGabe9599f04f0: [lldb] Skip target variable tests on Darwin because of chained fixups (authored by JDevlieghere).
Herald added a project: LLDB.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D131741/new/
https://reviews.llvm.org/D131741
Files:
lldb/test/API/commands/target/basic/TestTargetCommand.py
lldb/test/API/lang/c/global_variables/TestGlobalVariables.py
lldb/test/API/lang/cpp/char8_t/TestCxxChar8_t.py
Index: lldb/test/API/lang/cpp/char8_t/TestCxxChar8_t.py
===================================================================
--- lldb/test/API/lang/cpp/char8_t/TestCxxChar8_t.py
+++ lldb/test/API/lang/cpp/char8_t/TestCxxChar8_t.py
@@ -12,8 +12,8 @@
class CxxChar8_tTestCase(TestBase):
+ @skipIfDarwin # Chained Fixups
@skipIf(compiler="clang", compiler_version=['<', '7.0'])
- @expectedFailureDarwin(archs=["arm64", "arm64e"]) # <rdar://problem/37773624>
def test_without_process(self):
"""Test that C++ supports char8_t without a running process."""
self.build()
Index: lldb/test/API/lang/c/global_variables/TestGlobalVariables.py
===================================================================
--- lldb/test/API/lang/c/global_variables/TestGlobalVariables.py
+++ lldb/test/API/lang/c/global_variables/TestGlobalVariables.py
@@ -18,8 +18,8 @@
self.source, '// Set break point at this line.')
self.shlib_names = ["a"]
+ @skipIfDarwin # Chained Fixups
@expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr24764")
- @expectedFailureDarwin(archs=["arm64", "arm64e"]) # <rdar://problem/37773624>
def test_without_process(self):
"""Test that static initialized variables can be inspected without
process."""
Index: lldb/test/API/commands/target/basic/TestTargetCommand.py
===================================================================
--- lldb/test/API/commands/target/basic/TestTargetCommand.py
+++ lldb/test/API/commands/target/basic/TestTargetCommand.py
@@ -42,7 +42,7 @@
self.buildAll()
self.do_target_command()
- @expectedFailureDarwin(archs=["arm64", "arm64e"]) # <rdar://problem/37773624>
+ @skipIfDarwin # Chained Fixups
def test_target_variable_command(self):
"""Test 'target variable' command before and after starting the inferior."""
d = {'C_SOURCES': 'globals.c', 'EXE': self.getBuildArtifact('globals')}
@@ -51,7 +51,7 @@
self.do_target_variable_command('globals')
- @expectedFailureDarwin(archs=["arm64", "arm64e"]) # <rdar://problem/37773624>
+ @skipIfDarwin # Chained Fixups
def test_target_variable_command_no_fail(self):
"""Test 'target variable' command before and after starting the inferior."""
d = {'C_SOURCES': 'globals.c', 'EXE': self.getBuildArtifact('globals')}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D131741.452219.patch
Type: text/x-patch
Size: 2389 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20220812/4fb1381a/attachment.bin>
More information about the lldb-commits
mailing list