[lld] r249505 - Add missing % to t2.so.

Rafael Espindola via llvm-commits llvm-commits at lists.llvm.org
Tue Oct 6 19:01:48 PDT 2015


Author: rafael
Date: Tue Oct  6 21:01:47 2015
New Revision: 249505

URL: http://llvm.org/viewvc/llvm-project?rev=249505&view=rev
Log:
Add missing % to t2.so.

Modified:
    lld/trunk/test/elf2/pre_init_fini_array.s

Modified: lld/trunk/test/elf2/pre_init_fini_array.s
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/test/elf2/pre_init_fini_array.s?rev=249505&r1=249504&r2=249505&view=diff
==============================================================================
--- lld/trunk/test/elf2/pre_init_fini_array.s (original)
+++ lld/trunk/test/elf2/pre_init_fini_array.s Tue Oct  6 21:01:47 2015
@@ -1,7 +1,7 @@
 // RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t
 // RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %p/Inputs/shared.s -o %t2
-// RUN: lld -flavor gnu2 %t2 -o t2.so -shared
-// RUN: lld -flavor gnu2 %t t2.so -o %t2
+// RUN: lld -flavor gnu2 %t2 -o %t2.so -shared
+// RUN: lld -flavor gnu2 %t %t2.so -o %t2
 // RUN: llvm-readobj -symbols -sections -dynamic-table %t2 | FileCheck %s
 // RUN: llvm-objdump -d %t2 | FileCheck --check-prefix=DISASM %s
 // REQUIRES: x86




More information about the llvm-commits mailing list