]> granicus.if.org Git - clang/commitdiff
Drop Preprocessor/open-failure test, it breaks running the test suite as root,
authorDaniel Dunbar <daniel@zuster.org>
Sun, 6 Dec 2009 10:07:46 +0000 (10:07 +0000)
committerDaniel Dunbar <daniel@zuster.org>
Sun, 6 Dec 2009 10:07:46 +0000 (10:07 +0000)
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

test/Preprocessor/open-failure.c [deleted file]

diff --git a/test/Preprocessor/open-failure.c b/test/Preprocessor/open-failure.c
deleted file mode 100644 (file)
index 667b822..0000000
+++ /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);