[ELF] - Simplify testcase. NFC.
authorGeorge Rimar <grimar@accesssoftek.com>
Wed, 21 Feb 2018 11:56:55 +0000 (11:56 +0000)
committerGeorge Rimar <grimar@accesssoftek.com>
Wed, 21 Feb 2018 11:56:55 +0000 (11:56 +0000)
This removes script input file and inlines script into
testcase body. That is consistent with othet LS tests
and makes testcase easier to read.

llvm-svn: 325673

lld/test/ELF/linkerscript/Inputs/implicit-program-header.script [deleted file]
lld/test/ELF/linkerscript/implicit-program-header.s

diff --git a/lld/test/ELF/linkerscript/Inputs/implicit-program-header.script b/lld/test/ELF/linkerscript/Inputs/implicit-program-header.script
deleted file mode 100644 (file)
index 27dbea8..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-PHDRS
-{
-       ph_write PT_LOAD FLAGS(2);
-       ph_exec  PT_LOAD FLAGS(1);
-}
-
-SECTIONS
-{
-  .bar : { *(.bar) } : ph_exec
-  .foo : { *(.foo) }
-  .text : { *(.text) } : ph_write
-}
index 95cdf14..36379a9 100644 (file)
@@ -1,6 +1,15 @@
 # REQUIRES: x86
 # RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t.o
-# RUN: ld.lld --hash-style=sysv -o %t1 --script %S/Inputs/implicit-program-header.script  \
+# RUN: echo "PHDRS {                    \
+# RUN:   ph_write PT_LOAD FLAGS(2);     \
+# RUN:   ph_exec  PT_LOAD FLAGS(1);     \
+# RUN: }                                \
+# RUN: SECTIONS {                       \
+# RUN:  .bar : { *(.bar) } : ph_exec    \
+# RUN:  .foo : { *(.foo) }              \
+# RUN:  .text : { *(.text) } : ph_write \
+# RUN: }" > %t.script
+# RUN: ld.lld --hash-style=sysv -o %t1 --script %t.script  \
 # RUN:   %t.o -shared
 # RUN: llvm-readobj -elf-output-style=GNU -l %t1 | FileCheck %s