From: Christian Grothoff Date: Mon, 28 Sep 2009 21:34:11 +0000 (+0000) Subject: clean up afterwards X-Git-Tag: initial-import-from-subversion-38251~23457 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=d44fc929558cd9cbe3c94d057f0a2711a383b85c;p=oweals%2Fgnunet.git clean up afterwards --- diff --git a/src/util/test_disk.c b/src/util/test_disk.c index dd41c53c0..705a24abf 100644 --- a/src/util/test_disk.c +++ b/src/util/test_disk.c @@ -197,13 +197,13 @@ testGetHome () cfg = GNUNET_CONFIGURATION_create (); GNUNET_assert (cfg != NULL); GNUNET_CONFIGURATION_set_value_string (cfg, "service", "HOME", - "/tmp/a/b/c"); + "/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/a/b/c/d/e", fn); + ret = strcmp ("/tmp/test-gnunet-disk-a/b/c/d/e", fn); GNUNET_free (fn); - GNUNET_DISK_directory_remove ("/tmp/a"); + GNUNET_DISK_directory_remove ("/tmp/test-gnunet-disk-a"); return ret; }