diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2013-07-16 09:06:47 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2013-07-16 09:06:47 +0000 |
commit | 07bc8e9b8e28628969d680ee6e59ed4d0159a841 (patch) | |
tree | b46dac6999f118607a710ac39ac08779fd65bef2 /llvm | |
parent | b137ca157b8ef911077e6c252e9b4351e6f8e507 (diff) | |
download | bcm5719-llvm-07bc8e9b8e28628969d680ee6e59ed4d0159a841.tar.gz bcm5719-llvm-07bc8e9b8e28628969d680ee6e59ed4d0159a841.zip |
llvm/test/Object/directory.ll: Mark it as XFAIL:cygwin. Directories can be opened on cygwin.
llvm-svn: 186387
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/test/Object/directory.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/test/Object/directory.ll b/llvm/test/Object/directory.ll index 7501b8297ea..0d047b811a9 100644 --- a/llvm/test/Object/directory.ll +++ b/llvm/test/Object/directory.ll @@ -2,9 +2,9 @@ ;RUN: not llvm-ar r %T/test.a . 2>&1 | FileCheck %s ;CHECK: .: Is a directory -; opening a directory works on freebsd. On windows we just get a -; "permission denied" -;XFAIL: freebsd, win32, mingw32 +; Opening a directory works on cygwin and freebsd. +; On windows we just get a "Permission denied." +;XFAIL: freebsd, win32, mingw32, cygwin ;RUN: rm -f %T/test.a ;RUN: touch %T/a-very-long-file-name |