Rename test file. NFC.
authorRui Ueyama <ruiu@google.com>
Thu, 8 Sep 2016 03:08:05 +0000 (03:08 +0000)
committerRui Ueyama <ruiu@google.com>
Thu, 8 Sep 2016 03:08:05 +0000 (03:08 +0000)
llvm-svn: 280904

lld/test/ELF/linkerscript/fill.s [new file with mode: 0644]
lld/test/ELF/linkerscript/linkerscript-fill.s [deleted file]

diff --git a/lld/test/ELF/linkerscript/fill.s b/lld/test/ELF/linkerscript/fill.s
new file mode 100644 (file)
index 0000000..e6d93b8
--- /dev/null
@@ -0,0 +1,30 @@
+# REQUIRES: x86
+# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t.o
+# RUN: echo "SECTIONS {     \
+# RUN:  .out : {            \
+# RUN:   FILL(0x11111111);  \
+# RUN:   *(.aaa)            \
+# RUN:   . += 4;            \
+# RUN:   *(.bbb)            \
+# RUN:   . += 4;            \
+# RUN:   FILL(0x22222222);  \
+# RUN:   . += 4;            \
+# RUN:  }                   \
+# RUN: }; " > %t.script
+# RUN: ld.lld -o %t --script %t.script %t.o
+# RUN: llvm-objdump -s %t | FileCheck %s
+
+# CHECK:      Contents of section .out:
+# CHECK-NEXT: 0120 aa222222 22bb2222 22222222 2222
+
+.text
+.globl _start
+_start:
+
+.section .aaa, "a"
+.align 1
+.byte 0xAA
+
+.section .bbb, "a"
+.align 1
+.byte 0xBB
diff --git a/lld/test/ELF/linkerscript/linkerscript-fill.s b/lld/test/ELF/linkerscript/linkerscript-fill.s
deleted file mode 100644 (file)
index e6d93b8..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-# REQUIRES: x86
-# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t.o
-# RUN: echo "SECTIONS {     \
-# RUN:  .out : {            \
-# RUN:   FILL(0x11111111);  \
-# RUN:   *(.aaa)            \
-# RUN:   . += 4;            \
-# RUN:   *(.bbb)            \
-# RUN:   . += 4;            \
-# RUN:   FILL(0x22222222);  \
-# RUN:   . += 4;            \
-# RUN:  }                   \
-# RUN: }; " > %t.script
-# RUN: ld.lld -o %t --script %t.script %t.o
-# RUN: llvm-objdump -s %t | FileCheck %s
-
-# CHECK:      Contents of section .out:
-# CHECK-NEXT: 0120 aa222222 22bb2222 22222222 2222
-
-.text
-.globl _start
-_start:
-
-.section .aaa, "a"
-.align 1
-.byte 0xAA
-
-.section .bbb, "a"
-.align 1
-.byte 0xBB