diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-12-06 10:07:46 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-12-06 10:07:46 +0000 |
commit | 30bd7a00901037c6d5471b0999d96287a7a5f70f (patch) | |
tree | b320e206a0b771c612b7576dbac2c70a43fb0afd | |
parent | bb3503a146f5eee6393a8b7542f38d9f5fce6583 (diff) |
Drop Preprocessor/open-failure test, it breaks running the test suite as root,
and I can't figure out how to write it more portably.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@90705 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Preprocessor/open-failure.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/test/Preprocessor/open-failure.c b/test/Preprocessor/open-failure.c deleted file mode 100644 index 667b822168..0000000000 --- a/test/Preprocessor/open-failure.c +++ /dev/null @@ -1,11 +0,0 @@ -// RUN: rm -rf %t.dir -// RUN: mkdir %t.dir -// RUN: echo 'void f0();' > %t.dir/t.h -// RUN: chmod 000 %t.dir/t.h -// RUN: clang-cc -verify -I %t.dir %s - -// FIXME: Is there a way to test this on Windows? -// XFAIL: win32 - -#include "t.h" // expected-error {{Permission denied}} -int f0(void); |