aboutsummaryrefslogtreecommitdiff
path: root/src/testing/test_testing.c
diff options
context:
space:
mode:
authorNathan S. Evans <evans@in.tum.de>2010-11-05 18:21:50 +0000
committerNathan S. Evans <evans@in.tum.de>2010-11-05 18:21:50 +0000
commit75a33a1499cf60ea4364c9aa673816629a6c1413 (patch)
tree0620da4312bb04de4d7b65074fdd3b0c3dd6cc0e /src/testing/test_testing.c
parent7217c601ad30760872823193d62307e7a335d226 (diff)
downloadgnunet-75a33a1499cf60ea4364c9aa673816629a6c1413.tar.gz
gnunet-75a33a1499cf60ea4364c9aa673816629a6c1413.zip
big scheduler refactoring, expect some issues
Diffstat (limited to 'src/testing/test_testing.c')
-rw-r--r--src/testing/test_testing.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/testing/test_testing.c b/src/testing/test_testing.c
index 519ccc31f..079ccb6db 100644
--- a/src/testing/test_testing.c
+++ b/src/testing/test_testing.c
@@ -64,7 +64,6 @@ my_cb (void *cls,
64 64
65static void 65static void
66run (void *cls, 66run (void *cls,
67 struct GNUNET_SCHEDULER_Handle *sched,
68 char *const *args, 67 char *const *args,
69 const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *cfg) 68 const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *cfg)
70{ 69{
@@ -74,7 +73,7 @@ run (void *cls,
74#if VERBOSE 73#if VERBOSE
75 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Starting daemon.\n"); 74 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Starting daemon.\n");
76#endif 75#endif
77 d = GNUNET_TESTING_daemon_start (sched, cfg, TIMEOUT, NULL, NULL, 0, NULL, NULL, &my_cb, NULL); 76 d = GNUNET_TESTING_daemon_start (cfg, TIMEOUT, NULL, NULL, 0, NULL, NULL, &my_cb, NULL);
78 GNUNET_assert (d != NULL); 77 GNUNET_assert (d != NULL);
79} 78}
80 79