diff options
author | Hans Wennborg <hans@hanshq.net> | 2013-09-10 20:53:34 +0000 |
---|---|---|
committer | Hans Wennborg <hans@hanshq.net> | 2013-09-10 20:53:34 +0000 |
commit | 4e6bec7e26f676ac93bcb3c1324b38be29deebab (patch) | |
tree | e9625a147f20d087fb90df4cd5c38a1701ab870f /clang/test/Driver/cl-link.c | |
parent | 1ece9fc80677745278bbe670c595215b1748c951 (diff) | |
download | bcm5719-llvm-4e6bec7e26f676ac93bcb3c1324b38be29deebab.tar.gz bcm5719-llvm-4e6bec7e26f676ac93bcb3c1324b38be29deebab.zip |
Fix cl-link.c test failure on Mac platforms
The test filename (%s) is easily confused with an option when
it starts with /Users...
llvm-svn: 190435
Diffstat (limited to 'clang/test/Driver/cl-link.c')
-rw-r--r-- | clang/test/Driver/cl-link.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/Driver/cl-link.c b/clang/test/Driver/cl-link.c index f46298a1947..b789c248239 100644 --- a/clang/test/Driver/cl-link.c +++ b/clang/test/Driver/cl-link.c @@ -18,8 +18,8 @@ // ASAN: "{{.*}}clang_rt.asan-i386.lib" // ASAN: "{{.*}}cl-link{{.*}}.obj" -// RUN: %clang_cl /LD -### %s 2>&1 | FileCheck --check-prefix=DLL %s -// RUN: %clang_cl /LDd -### %s 2>&1 | FileCheck --check-prefix=DLL %s +// RUN: %clang_cl /LD -### /Tc%s 2>&1 | FileCheck --check-prefix=DLL %s +// RUN: %clang_cl /LDd -### /Tc%s 2>&1 | FileCheck --check-prefix=DLL %s // DLL: link.exe // "-dll" |