X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=src%2Futil%2Ftest_disk.c;h=560b6710eeecd02d456cd8ec1af7e4318bf66ba7;hb=ed28dd2141e77aa073d81089cb5a07e0a0fc013c;hp=7579ac7dc7788a53e1ae778996cb2275d00dd40b;hpb=427dd6f998fb1fde515a3b5c800f9f6d308197b2;p=oweals%2Fgnunet.git diff --git a/src/util/test_disk.c b/src/util/test_disk.c index 7579ac7dc..560b6710e 100644 --- a/src/util/test_disk.c +++ b/src/util/test_disk.c @@ -1,6 +1,6 @@ /* This file is part of GNUnet. - (C) 2001, 2002, 2003, 2005, 2006, 2009 Christian Grothoff (and other contributing authors) + Copyright (C) 2001, 2002, 2003, 2005, 2006, 2009 GNUnet e.V. GNUnet is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published @@ -14,8 +14,8 @@ You should have received a copy of the GNU General Public License along with GNUnet; see the file COPYING. If not, write to the - Free Software Foundation, Inc., 59 Temple Place - Suite 330, - Boston, MA 02111-1307, USA. + Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. */ /** @@ -168,27 +168,6 @@ testDirIter () } -static int -testGetHome () -{ - struct GNUNET_CONFIGURATION_Handle *cfg; - char *fn; - int ret; - - cfg = GNUNET_CONFIGURATION_create (); - GNUNET_assert (cfg != NULL); - GNUNET_CONFIGURATION_set_value_string (cfg, "service", "HOME", - "/tmp/test-gnunet-disk-a/b/c"); - fn = GNUNET_DISK_get_home_filename (cfg, "service", "d", "e", NULL); - GNUNET_assert (fn != NULL); - GNUNET_CONFIGURATION_destroy (cfg); - ret = strcmp ("/tmp/test-gnunet-disk-a/b/c/d/e", fn); - GNUNET_free (fn); - GNUNET_break (GNUNET_OK == - GNUNET_DISK_directory_remove ("/tmp/test-gnunet-disk-a")); - return ret; -} - static int testCanonicalize () { @@ -207,9 +186,11 @@ testCanonicalize () static int testChangeOwner () { +#ifndef WINDOWS GNUNET_log_skip (1, GNUNET_NO); if (GNUNET_OK == GNUNET_DISK_file_change_owner ("/dev/null", "unknownuser")) return 1; +#endif return 0; } @@ -246,7 +227,6 @@ main (int argc, char *argv[]) failureCount += testOpenClose (); failureCount += testDirScan (); failureCount += testDirIter (); - failureCount += testGetHome (); failureCount += testCanonicalize (); failureCount += testChangeOwner (); failureCount += testDirMani ();