[Lldb-commits] [lldb] 57f8797 - [LLDB][test] - Update one more test after the yaml2obj change.

Georgii Rymar via lldb-commits lldb-commits at lists.llvm.org
Mon Nov 9 03:57:01 PST 2020


Author: Georgii Rymar
Date: 2020-11-09T14:56:07+03:00
New Revision: 57f87977f53fd1c06fee669511520f33cdc85a20

URL: https://github.com/llvm/llvm-project/commit/57f87977f53fd1c06fee669511520f33cdc85a20
DIFF: https://github.com/llvm/llvm-project/commit/57f87977f53fd1c06fee669511520f33cdc85a20.diff

LOG: [LLDB][test] - Update one more test after the yaml2obj change.

I've missed this one.

Added: 
    

Modified: 
    lldb/test/API/functionalities/gdb_remote_client/a.yaml

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/functionalities/gdb_remote_client/a.yaml b/lldb/test/API/functionalities/gdb_remote_client/a.yaml
index f4e9ff5d8722..6058b6ddd3c5 100644
--- a/lldb/test/API/functionalities/gdb_remote_client/a.yaml
+++ b/lldb/test/API/functionalities/gdb_remote_client/a.yaml
@@ -23,12 +23,13 @@ ProgramHeaders:
     VAddr: 0x1000
     PAddr: 0x1000
     Align: 0x4
-    Sections:
-      - Section: .text
+    FirstSec: .text
+    LastSec:  .text
   - Type: PT_LOAD
     Flags: [ PF_R, PF_W ]
     VAddr: 0x2000
     PAddr: 0x1004
     Align: 0x4
-    Sections:
-      - Section: .data
+    FirstSec: .data
+    LastSec:  .data
+


        


More information about the lldb-commits mailing list