diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2012-03-19 16:07:58 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2012-03-19 16:07:58 +0000 |
commit | 6d2b13135c19341475b6d4a94a26614c40624bad (patch) | |
tree | bc78778984798fdfee02177e5c93a23a0dc59b50 | |
parent | 09c5c39590caa92aa7ce660607a070ea275f5ad7 (diff) |
test/Driver/cpath.c: Mark this as XFAIL:mingw32,win32 for now.
On Win32 hosts, ';' is used for path separator.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@153037 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Driver/cpath.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/Driver/cpath.c b/test/Driver/cpath.c index 5b3a94a339..8fb8a27073 100644 --- a/test/Driver/cpath.c +++ b/test/Driver/cpath.c @@ -1,5 +1,8 @@ // RUN: mkdir -p %T/test1 %T/test2 %T/test3 +// This could pass on Win32 if separator in pathenv were not ':' but ';'. +// XFAIL: mingw32,win32 + // RUN: env CPATH=%T/test1:%T/test2 %clang -x c -E -v %s 2>&1 | FileCheck %s -check-prefix=CPATH // CPATH: -I {{.*}}/test1 // CPATH: -I {{.*}}/test2 |