[Lldb-commits] [lldb] 2560a93 - [TestTargetCommand] `target var` without a process doesn't work on arm64e.

Davide Italiano via lldb-commits lldb-commits at lists.llvm.org
Tue Feb 18 13:38:51 PST 2020


Author: Davide Italiano
Date: 2020-02-18T13:38:27-08:00
New Revision: 2560a93b706245b442ac5bf208c48db4912de134

URL: https://github.com/llvm/llvm-project/commit/2560a93b706245b442ac5bf208c48db4912de134
DIFF: https://github.com/llvm/llvm-project/commit/2560a93b706245b442ac5bf208c48db4912de134.diff

LOG: [TestTargetCommand] `target var` without a process doesn't work on arm64e.

lldb needs to know about chains of authenticated relocations.

<rdar://problem/37773624>

Added: 
    

Modified: 
    lldb/test/API/commands/target/basic/TestTargetCommand.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/commands/target/basic/TestTargetCommand.py b/lldb/test/API/commands/target/basic/TestTargetCommand.py
index 95df78eef12a..047b1073a961 100644
--- a/lldb/test/API/commands/target/basic/TestTargetCommand.py
+++ b/lldb/test/API/commands/target/basic/TestTargetCommand.py
@@ -44,6 +44,7 @@ def test_target_command(self):
         self.buildAll()
         self.do_target_command()
 
+    @expectedFailureAll(archs=['arm64e']) # <rdar://problem/37773624>
     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')}
@@ -52,6 +53,7 @@ def test_target_variable_command(self):
 
         self.do_target_variable_command('globals')
 
+    @expectedFailureAll(archs=['arm64e']) # <rdar://problem/37773624>
     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')}


        


More information about the lldb-commits mailing list