[lld] r334762 - Fix wasm responsefile lld test on Windows

Reid Kleckner via llvm-commits llvm-commits at lists.llvm.org
Thu Jun 14 12:59:22 PDT 2018


Author: rnk
Date: Thu Jun 14 12:59:22 2018
New Revision: 334762

URL: http://llvm.org/viewvc/llvm-project?rev=334762&view=rev
Log:
Fix wasm responsefile lld test on Windows

Modified:
    lld/trunk/test/wasm/responsefile.test

Modified: lld/trunk/test/wasm/responsefile.test
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/test/wasm/responsefile.test?rev=334762&r1=334761&r2=334762&view=diff
==============================================================================
--- lld/trunk/test/wasm/responsefile.test (original)
+++ lld/trunk/test/wasm/responsefile.test Thu Jun 14 12:59:22 2018
@@ -1,10 +1,10 @@
 RUN: llc -filetype=obj -o %t.o %p/Inputs/ret32.ll
 
-RUN: echo "%t.o -o %t.wasm -e ret32" > %t.rsp
+RUN: echo "%/t.o -o %/t.wasm -e ret32" > %t.rsp
 RUN: wasm-ld @%t.rsp --initial-memory=655360
 RUN: llvm-readobj --sections %t.wasm | FileCheck %s
 CHECK: InitialPages: 10
 
 RUN: echo "blah\foo" > %t.rsp
 RUN: not wasm-ld @%t.rsp 2>&1 | FileCheck --check-prefix=ESCAPE %s
-ESCAPE: error: cannot open blahfoo: No such file or directory
+ESCAPE: error: cannot open blahfoo: {{[Nn]}}o such file or directory




More information about the llvm-commits mailing list