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 | 6c8884ce08fa40038f67dd0eb99dcd6ccee61d35 (patch) | |
tree | 64df4b520f483386cbf03d513a15ff3286690b4c | |
parent | 1597da4c05501ae592d1eabe86a8466337a76ded (diff) | |
download | bcm5719-llvm-6c8884ce08fa40038f67dd0eb99dcd6ccee61d35.tar.gz bcm5719-llvm-6c8884ce08fa40038f67dd0eb99dcd6ccee61d35.zip |
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
-rw-r--r-- | clang/test/Preprocessor/open-failure.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/clang/test/Preprocessor/open-failure.c b/clang/test/Preprocessor/open-failure.c deleted file mode 100644 index 667b8221689..00000000000 --- a/clang/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); |