From: Daniel Dunbar Date: Sun, 6 Dec 2009 10:07:46 +0000 (+0000) Subject: Drop Preprocessor/open-failure test, it breaks running the test suite as root, X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=30bd7a00901037c6d5471b0999d96287a7a5f70f;p=clang 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 --- 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);