diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2016-02-16 03:17:13 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2016-02-16 03:17:13 +0000 |
commit | 75a18c20b1c9f748a132c920e2f9b6e5dc9cac07 (patch) | |
tree | 22fef3f06b0b013d0180b232f9e3dd05f2808e7f | |
parent | 9cd0ff14707a20169e2c7499bec95a7c70655a41 (diff) | |
download | bcm5719-llvm-75a18c20b1c9f748a132c920e2f9b6e5dc9cac07.tar.gz bcm5719-llvm-75a18c20b1c9f748a132c920e2f9b6e5dc9cac07.zip |
clang/test/Driver/ps4-linker-win.c: Tweak substitutions if %PATH% ends with '\\', or lit complains with "parser error".
llvm-svn: 260929
-rw-r--r-- | clang/test/Driver/ps4-linker-win.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/clang/test/Driver/ps4-linker-win.c b/clang/test/Driver/ps4-linker-win.c index e42fc963dce..80387acec79 100644 --- a/clang/test/Driver/ps4-linker-win.c +++ b/clang/test/Driver/ps4-linker-win.c @@ -10,16 +10,16 @@ // RUN: touch %T/ps4-ld.exe // RUN: touch %T/ps4-ld.gold.exe -// RUN: env "PATH=%T;%PATH%" %clang -target x86_64-scei-ps4 %s -fuse-ld=gold -### 2>&1 \ +// RUN: env "PATH=%T;%PATH%;" %clang -target x86_64-scei-ps4 %s -fuse-ld=gold -### 2>&1 \ // RUN: | FileCheck --check-prefix=CHECK-PS4-GOLD %s -// RUN: env "PATH=%T;%PATH%" %clang -target x86_64-scei-ps4 %s -shared -### 2>&1 \ +// RUN: env "PATH=%T;%PATH%;" %clang -target x86_64-scei-ps4 %s -shared -### 2>&1 \ // RUN: | FileCheck --check-prefix=CHECK-PS4-GOLD %s -// RUN: env "PATH=%T;%PATH%" %clang -target x86_64-scei-ps4 %s -### 2>&1 \ +// RUN: env "PATH=%T;%PATH%;" %clang -target x86_64-scei-ps4 %s -### 2>&1 \ // RUN: | FileCheck --check-prefix=CHECK-PS4-LINKER %s -// RUN: env "PATH=%T;%PATH%" %clang -target x86_64-scei-ps4 %s -fuse-ld=ps4 -### 2>&1 \ +// RUN: env "PATH=%T;%PATH%;" %clang -target x86_64-scei-ps4 %s -fuse-ld=ps4 -### 2>&1 \ // RUN: | FileCheck --check-prefix=CHECK-PS4-LINKER %s -// RUN: env "PATH=%T;%PATH%" %clang -target x86_64-scei-ps4 %s -shared \ +// RUN: env "PATH=%T;%PATH%;" %clang -target x86_64-scei-ps4 %s -shared \ // RUN: -fuse-ld=ps4 -### 2>&1 | FileCheck --check-prefix=CHECK-PS4-LINKER %s // FIXME: "Output\\" is hardcoded part of %T. |