aboutsummaryrefslogtreecommitdiff
path: root/src/fs/test_fs_test_lib.c
diff options
context:
space:
mode:
authorSree Harsha Totakura <totakura@in.tum.de>2012-12-11 12:27:41 +0000
committerSree Harsha Totakura <totakura@in.tum.de>2012-12-11 12:27:41 +0000
commit15d78567a6dfa9f4644321e094c8b0eec717ec4e (patch)
tree4fe9977c8df426847c166ae9dfccfe20196a8dc9 /src/fs/test_fs_test_lib.c
parentc70d10589c4189a255066032bdd1d72204641247 (diff)
downloadgnunet-15d78567a6dfa9f4644321e094c8b0eec717ec4e.tar.gz
gnunet-15d78567a6dfa9f4644321e094c8b0eec717ec4e.zip
GNUNET_TESTBED_test_run to return status
Diffstat (limited to 'src/fs/test_fs_test_lib.c')
-rw-r--r--src/fs/test_fs_test_lib.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/fs/test_fs_test_lib.c b/src/fs/test_fs_test_lib.c
index bee7909a9..011ee1a6a 100644
--- a/src/fs/test_fs_test_lib.c
+++ b/src/fs/test_fs_test_lib.c
@@ -139,11 +139,11 @@ int
139main (int argc, char *argv[]) 139main (int argc, char *argv[])
140{ 140{
141 GNUNET_DISK_directory_remove ("/tmp/gnunet-test-fs-lib/"); 141 GNUNET_DISK_directory_remove ("/tmp/gnunet-test-fs-lib/");
142 GNUNET_TESTBED_test_run ("test_fs_test_lib", 142 (void) GNUNET_TESTBED_test_run ("test_fs_test_lib",
143 "fs_test_lib_data.conf", 143 "fs_test_lib_data.conf",
144 NUM_DAEMONS, 144 NUM_DAEMONS,
145 0, NULL, NULL, 145 0, NULL, NULL,
146 &run, NULL); 146 &run, NULL);
147 GNUNET_DISK_directory_remove ("/tmp/gnunet-test-fs-lib/"); 147 GNUNET_DISK_directory_remove ("/tmp/gnunet-test-fs-lib/");
148 return ret; 148 return ret;
149} 149}