[lld] r301353 - Attempt to fix a Windows bot.
Rui Ueyama via llvm-commits
llvm-commits at lists.llvm.org
Tue Apr 25 12:55:28 PDT 2017
Author: ruiu
Date: Tue Apr 25 14:55:28 2017
New Revision: 301353
URL: http://llvm.org/viewvc/llvm-project?rev=301353&view=rev
Log:
Attempt to fix a Windows bot.
Looks like `echo "{_start;};"` on lld-x86_64-win7 bot echoes `_start;;`
for some reason. I cannot reproduce the issue locally. I suspect that
it might be interpreting {<word>} in a special way. This patch is to
attempt to fix it by appending space characters.
Modified:
lld/trunk/test/ELF/progname.s
Modified: lld/trunk/test/ELF/progname.s
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/test/ELF/progname.s?rev=301353&r1=301352&r2=301353&view=diff
==============================================================================
--- lld/trunk/test/ELF/progname.s (original)
+++ lld/trunk/test/ELF/progname.s Tue Apr 25 14:55:28 2017
@@ -12,7 +12,7 @@
// RUN: ld.lld -o %t %t.o %t.so
// RUN: llvm-readobj -dyn-symbols %t | FileCheck %s
-// RUN: echo "{_start;};" > %t.dynlist
+// RUN: echo "{ _start; };" > %t.dynlist
// RUN: ld.lld -dynamic-list %t.dynlist -o %t %t.o %t.so
// RUN: llvm-readobj -dyn-symbols %t | FileCheck %s
More information about the llvm-commits
mailing list