diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2012-01-27 00:31:09 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2012-01-27 00:31:09 +0000 |
commit | a5fde150f99acc57c6b8bc2f94de4cae7215726f (patch) | |
tree | e974f6a916c5e06ab79502efe8e6db88d5e9a21b | |
parent | 5701e97d6d844d0d9d0d4c8324d9e75107e77b88 (diff) |
test/Driver/prefixed-tools.c: Disable this on win32 hosts, msvc and mingw.
It had failed on Win32 due to inability of executing shell scripts.
Still it fails even with mingw MSYS bash.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@149100 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Driver/prefixed-tools.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/Driver/prefixed-tools.c b/test/Driver/prefixed-tools.c index 200f1ef684..2ddd8b33e6 100644 --- a/test/Driver/prefixed-tools.c +++ b/test/Driver/prefixed-tools.c @@ -2,6 +2,10 @@ // RUN: env PATH=%s-helper %clang -no-integrated-as -m32 -target x86_64--linux %s -o - >> %t.log // RUN: FileCheck -input-file %t.log %s +// FIXME: It had failed on Win32 due to inability of executing shell scripts. +// Still it fails even with mingw MSYS bash. +// REQUIRES: shell + // CHECK: x86_64--linux-as called // CHECK: x86_64--linux-ld called // CHECK: x86_64--linux-as called |