1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 10:42:39 +01:00

Disable failing TestDevNull test on Windows

llvm-svn: 236126
This commit is contained in:
Reid Kleckner 2015-04-29 16:54:11 +00:00
parent c5f51a5b29
commit b3653639b1

View File

@ -50,6 +50,7 @@ TEST(raw_pwrite_ostreamTest, TestFD) {
#endif
}
#ifdef LLVM_ON_UNIX
TEST(raw_pwrite_ostreamTest, TestDevNull) {
int FD;
sys::fs::openFileForWrite("/dev/null", FD, sys::fs::F_None);
@ -59,4 +60,5 @@ TEST(raw_pwrite_ostreamTest, TestDevNull) {
OS.pwrite(Test.data(), Test.size(), 0);
OS.pwrite(Test.data(), Test.size(), 0);
}
#endif
}