[lld] r285629 - Revert "Add a space to work around a Windows CPython / MSys quoting bug"
Reid Kleckner via llvm-commits
llvm-commits at lists.llvm.org
Mon Oct 31 13:13:41 PDT 2016
Author: rnk
Date: Mon Oct 31 15:13:41 2016
New Revision: 285629
URL: http://llvm.org/viewvc/llvm-project?rev=285629&view=rev
Log:
Revert "Add a space to work around a Windows CPython / MSys quoting bug"
This reverts commit r284768.
After LLVM r285237, the lit shell interpreter works around this bug for
us.
Modified:
lld/trunk/test/ELF/libsearch.s
lld/trunk/test/ELF/version-script-err.s
Modified: lld/trunk/test/ELF/libsearch.s
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/test/ELF/libsearch.s?rev=285629&r1=285628&r2=285629&view=diff
==============================================================================
--- lld/trunk/test/ELF/libsearch.s (original)
+++ lld/trunk/test/ELF/libsearch.s Mon Oct 31 15:13:41 2016
@@ -90,7 +90,7 @@
// RUN: llvm-readobj --symbols %t3 | FileCheck --check-prefix=DYNAMIC %s
// -nostdlib
-// RUN: echo ' SEARCH_DIR("'%t.dir'")' > %t.script
+// RUN: echo 'SEARCH_DIR("'%t.dir'")' > %t.script
// RUN: ld.lld -o %t3 %t.o -script %t.script -lls
// RUN: not ld.lld -o %t3 %t.o -script %t.script -lls -nostdlib \
// RUN: 2>&1 | FileCheck --check-prefix=NOSTDLIB %s
Modified: lld/trunk/test/ELF/version-script-err.s
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/test/ELF/version-script-err.s?rev=285629&r1=285628&r2=285629&view=diff
==============================================================================
--- lld/trunk/test/ELF/version-script-err.s (original)
+++ lld/trunk/test/ELF/version-script-err.s Mon Oct 31 15:13:41 2016
@@ -4,7 +4,7 @@
// RUN: not ld.lld -shared %t.o -o %t.so --version-script %p/Inputs/version-script-err.script 2>&1 | FileCheck %s
// CHECK: ; expected, but got }
-// RUN: echo " \"" > %terr1.script
+// RUN: echo "\"" > %terr1.script
// RUN: not ld.lld --version-script %terr1.script -shared %t.o -o %t.so 2>&1 | \
// RUN: FileCheck -check-prefix=ERR1 %s
// ERR1: unclosed quote
More information about the llvm-commits
mailing list