[lld] r212542 - [Mips] Make rel-dynamic-07.test test case independent from external input files.

Simon Atanasyan simon at atanasyan.com
Tue Jul 8 08:47:56 PDT 2014


Author: atanasyan
Date: Tue Jul  8 10:47:55 2014
New Revision: 212542

URL: http://llvm.org/viewvc/llvm-project?rev=212542&view=rev
Log:
[Mips] Make rel-dynamic-07.test test case independent from external input files.

Modified:
    lld/trunk/test/elf/Mips/rel-dynamic-07.test

Modified: lld/trunk/test/elf/Mips/rel-dynamic-07.test
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/test/elf/Mips/rel-dynamic-07.test?rev=212542&r1=212541&r2=212542&view=diff
==============================================================================
--- lld/trunk/test/elf/Mips/rel-dynamic-07.test (original)
+++ lld/trunk/test/elf/Mips/rel-dynamic-07.test Tue Jul  8 10:47:55 2014
@@ -5,12 +5,12 @@
 #   a) Emitting of R_MIPS_REL32 relocations.
 #   b) There should be no R_MIPS_REL32 relocations for the _gp_disp symbol.
 #
-# RUN: yaml2obj -format=elf %S/Inputs/pic-obj.yaml > %t-so-obj
-# RUN: lld -flavor gnu -target mipsel -shared -o %t-so %t-so-obj
-# RUN: yaml2obj -format=elf %s > %t-obj
+# RUN: yaml2obj -format=elf -docnum 1 %s > %t-so.o
+# RUN: lld -flavor gnu -target mipsel -shared -o %t1.so %t-so.o
+# RUN: yaml2obj -format=elf -docnum 2 %s > %t-o.o
 # RUN: lld -flavor gnu -target mipsel -shared --noinhibit-exec \
-# RUN:     -o %t1-so %t-obj %t-so
-# RUN: llvm-readobj -dt -r -sections %t1-so | FileCheck %s
+# RUN:     -o %t2.so %t-o.o %t1.so
+# RUN: llvm-readobj -dt -r -sections %t2.so | FileCheck %s
 
 # CHECK:   Sections [
 # CHECK:     Section {
@@ -123,8 +123,54 @@
 # CHECK-NEXT:   }
 # CHECK-NEXT: ]
 
-!ELF
-FileHeader: !FileHeader
+# so.o
+---
+FileHeader:
+  Class:   ELFCLASS32
+  Data:    ELFDATA2LSB
+  Type:    ET_REL
+  Machine: EM_MIPS
+  Flags:   [EF_MIPS_PIC, EF_MIPS_CPIC]
+
+Sections:
+- Name:         .text
+  Type:         SHT_PROGBITS
+  Size:         0x0C
+  AddressAlign: 16
+  Flags:        [SHF_EXECINSTR, SHF_ALLOC]
+
+- Name:         .data
+  Type:         SHT_PROGBITS
+  Size:         0x08
+  AddressAlign: 16
+  Flags:        [SHF_WRITE, SHF_ALLOC]
+
+Symbols:
+  Global:
+    - Name: T1
+      Section: .text
+      Type: STT_FUNC
+      Value: 0x0
+      Size: 4
+    - Name: T2
+      Section: .text
+      Type: STT_FUNC
+      Value: 0x4
+      Size: 4
+    - Name: D1
+      Section: .data
+      Type: STT_OBJECT
+      Value: 0x0
+      Size: 4
+    - Name: D2
+      Section: .data
+      Type: STT_OBJECT
+      Value: 0x4
+      Size: 4
+
+# o.o
+---
+FileHeader:
   Class: ELFCLASS32
   Data: ELFDATA2LSB
   Type: ET_REL
@@ -134,13 +180,13 @@ FileHeader: !FileHeader
 Sections:
 - Name: .text
   Type: SHT_PROGBITS
-  Content:  "000000000000000000000000"
+  Size: 0x0C
   AddressAlign: 16
   Flags: [SHF_EXECINSTR, SHF_ALLOC]
 
 - Name: .data
   Type: SHT_PROGBITS
-  Content:  "000000000000000000000000"
+  Size: 0x0C
   AddressAlign: 16
   Flags: [SHF_WRITE, SHF_ALLOC]
 





More information about the llvm-commits mailing list