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.

llvm-svn: 90705
This commit is contained in:
Daniel Dunbar 2009-12-06 10:07:46 +00:00
parent 1597da4c05
commit 6c8884ce08
1 changed files with 0 additions and 11 deletions

View File

@ -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);