diff options
| author | Rui Ueyama <ruiu@google.com> | 2017-04-25 19:55:28 +0000 |
|---|---|---|
| committer | Rui Ueyama <ruiu@google.com> | 2017-04-25 19:55:28 +0000 |
| commit | 9b52d67e1729f5972cdd366c62f314de531c3f7d (patch) | |
| tree | c00b192a18493837a25af9f56540fc901ce481dd | |
| parent | c36a78c3f338f7f4da1db1074211dd748c833675 (diff) | |
| download | bcm5719-llvm-9b52d67e1729f5972cdd366c62f314de531c3f7d.tar.gz bcm5719-llvm-9b52d67e1729f5972cdd366c62f314de531c3f7d.zip | |
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.
llvm-svn: 301353
| -rw-r--r-- | lld/test/ELF/progname.s | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/test/ELF/progname.s b/lld/test/ELF/progname.s index 154a7279a4d..6d91823c948 100644 --- a/lld/test/ELF/progname.s +++ b/lld/test/ELF/progname.s @@ -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 |

