From: Peter Collingbourne Date: Sat, 20 Jun 2015 01:28:20 +0000 (+0000) Subject: Use correct escaping for semicolon on Windows. X-Git-Url: http://plrg.eecs.uci.edu/git/?p=oota-llvm.git;a=commitdiff_plain;h=d1bbb25afe4f12a9e32c275787ae9540584036c9 Use correct escaping for semicolon on Windows. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@240207 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/LibDriver/libpath.test b/test/LibDriver/libpath.test index 22d4f58f7f1..2cfca2456d9 100644 --- a/test/LibDriver/libpath.test +++ b/test/LibDriver/libpath.test @@ -2,7 +2,7 @@ RUN: mkdir -p %T/a %T/b RUN: llvm-mc -triple=x86_64-pc-windows-msvc -filetype=obj -o %T/a/foo.obj %S/Inputs/a.s RUN: llvm-mc -triple=x86_64-pc-windows-msvc -filetype=obj -o %T/b/foo.obj %S/Inputs/b.s -RUN: env LIB=%T/a\;%T/b llvm-lib /out:%t1.lib foo.obj +RUN: env "LIB=%T/a;%T/b" llvm-lib /out:%t1.lib foo.obj RUN: llvm-nm %t1.lib | FileCheck --check-prefix=A %s RUN: llvm-lib /out:%t2.lib /libpath:%T/a /libpath:%T/b foo.obj