[PATCH] D42792: [ELF] Example test for PR36190

James Henderson via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Feb 1 06:17:26 PST 2018


jhenderson created this revision.
Herald added subscribers: llvm-commits, emaste.

The test uses BYTE commands to provoke the assertion, but any command will work.


Repository:
  rLLD LLVM Linker

https://reviews.llvm.org/D42792

Files:
  test/ELF/linkerscript/symbol-ordering-file.s


Index: test/ELF/linkerscript/symbol-ordering-file.s
===================================================================
--- test/ELF/linkerscript/symbol-ordering-file.s
+++ test/ELF/linkerscript/symbol-ordering-file.s
@@ -18,6 +18,12 @@
 # RUN: ld.lld --symbol-ordering-file %t.ord %t.o --script %t2.script -o %t3.out
 # RUN: llvm-objdump -s %t3.out| FileCheck %s --check-prefix=AFTER
 
+# RUN: echo "SECTIONS { .foo : { BYTE(0x33); *(.foo); BYTE(0x44) } }" > %t3.script
+# RUN: ld.lld --symbol-ordering-file %t.ord %t.o --script %t3.script -o %t4.out
+# RUN: llvm-objdump -s %t4.out| FileCheck %s --check-prefix=COMMANDS
+# COMMANDS: Contents of section .foo:
+# COMMANDS-NEXT:  33221144
+
 .section .foo,"ax", at progbits,unique,1
 _foo1:
  .byte 0x11


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D42792.132376.patch
Type: text/x-patch
Size: 751 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180201/99b06619/attachment.bin>


More information about the llvm-commits mailing list