projects
/
oweals
/
gnunet.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a0c9907
)
Windows lacks /dev/full
author
Nils Durner
<durner@gnunet.org>
Sun, 15 Nov 2009 10:01:03 +0000
(10:01 +0000)
committer
Nils Durner
<durner@gnunet.org>
Sun, 15 Nov 2009 10:01:03 +0000
(10:01 +0000)
src/util/test_bio.c
patch
|
blob
|
history
diff --git
a/src/util/test_bio.c
b/src/util/test_bio.c
index 0fa8c5039659448ee0279c2361ebdfed158d22b2..0dad2a680a80b2bb85db68c04e754d85f7020656 100644
(file)
--- a/
src/util/test_bio.c
+++ b/
src/util/test_bio.c
@@
-238,6
+238,7
@@
test_nullfile_rw ()
fileRNO = GNUNET_BIO_read_open (fileNameNO);
GNUNET_assert (NULL == fileRNO);
+#ifndef MINGW
fileW = GNUNET_BIO_write_open ("/dev/full");
GNUNET_assert (NULL != fileW);
GNUNET_assert (GNUNET_SYSERR ==
@@
-270,6
+271,7
@@
test_nullfile_rw ()
GNUNET_free (msg);
GNUNET_CONTAINER_meta_data_destroy (metaDataR);
GNUNET_CONTAINER_meta_data_destroy (metaDataW);
+#endif
return 0;
}