aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLRN <lrn1986@gmail.com>2013-10-11 14:13:27 +0000
committerLRN <lrn1986@gmail.com>2013-10-11 14:13:27 +0000
commit0bcc09cc685395189b73bd33af0376e20a2958e6 (patch)
treea15d9af0dc74286361d583e62d41ba889b06459f /src
parent01521e0e51a35ff1e1b54dc78d643ce8c9042720 (diff)
downloadgnunet-0bcc09cc685395189b73bd33af0376e20a2958e6.tar.gz
gnunet-0bcc09cc685395189b73bd33af0376e20a2958e6.zip
Skip the testChangeOwner test on W32
Diffstat (limited to 'src')
-rw-r--r--src/util/test_disk.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/util/test_disk.c b/src/util/test_disk.c
index 40e6b079c..3f8188d67 100644
--- a/src/util/test_disk.c
+++ b/src/util/test_disk.c
@@ -186,9 +186,11 @@ testCanonicalize ()
186static int 186static int
187testChangeOwner () 187testChangeOwner ()
188{ 188{
189#ifndef WINDOWS
189 GNUNET_log_skip (1, GNUNET_NO); 190 GNUNET_log_skip (1, GNUNET_NO);
190 if (GNUNET_OK == GNUNET_DISK_file_change_owner ("/dev/null", "unknownuser")) 191 if (GNUNET_OK == GNUNET_DISK_file_change_owner ("/dev/null", "unknownuser"))
191 return 1; 192 return 1;
193#endif
192 return 0; 194 return 0;
193} 195}
194 196