[Lldb-commits] [lldb] 0159c21 - [TestGlobalVariables] `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:30:58 PST 2020


Author: Davide Italiano
Date: 2020-02-18T13:30:51-08:00
New Revision: 0159c21119ed5694c2804ec439e336b5b7e136ec

URL: https://github.com/llvm/llvm-project/commit/0159c21119ed5694c2804ec439e336b5b7e136ec
DIFF: https://github.com/llvm/llvm-project/commit/0159c21119ed5694c2804ec439e336b5b7e136ec.diff

LOG: [TestGlobalVariables] `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/lang/c/global_variables/TestGlobalVariables.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/lang/c/global_variables/TestGlobalVariables.py b/lldb/test/API/lang/c/global_variables/TestGlobalVariables.py
index 04b874942acb..7f13bf0036ab 100644
--- a/lldb/test/API/lang/c/global_variables/TestGlobalVariables.py
+++ b/lldb/test/API/lang/c/global_variables/TestGlobalVariables.py
@@ -21,6 +21,7 @@ def setUp(self):
         self.shlib_names = ["a"]
 
     @expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr24764")
+    @expectedFailureAll(archs=["arm64e"]) # <rdar://problem/37773624>
     def test_without_process(self):
         """Test that static initialized variables can be inspected without
         process."""


        


More information about the lldb-commits mailing list