aboutsummaryrefslogtreecommitdiff
path: root/src/testing/testing.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2012-04-26 08:14:54 +0000
committerChristian Grothoff <christian@grothoff.org>2012-04-26 08:14:54 +0000
commit074829f1d2c58e17f5648da2b78a6d2b6d75d817 (patch)
tree56781eae6148d7647b9a1c55e32f94928b314482 /src/testing/testing.c
parent67265ae5d369df052fd587306e736169f7f448e1 (diff)
downloadgnunet-074829f1d2c58e17f5648da2b78a6d2b6d75d817.tar.gz
gnunet-074829f1d2c58e17f5648da2b78a6d2b6d75d817.zip
-convert assert to break for now
Diffstat (limited to 'src/testing/testing.c')
-rw-r--r--src/testing/testing.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/testing/testing.c b/src/testing/testing.c
index 7a2a2b87a..298d78bce 100644
--- a/src/testing/testing.c
+++ b/src/testing/testing.c
@@ -1542,7 +1542,10 @@ GNUNET_TESTING_daemon_stop (struct GNUNET_TESTING_Daemon *d,
1542 GNUNET_free_non_null (d->username); 1542 GNUNET_free_non_null (d->username);
1543 if (NULL != d->dead_cb) 1543 if (NULL != d->dead_cb)
1544 d->dead_cb (d->dead_cb_cls, NULL); 1544 d->dead_cb (d->dead_cb_cls, NULL);
1545 GNUNET_assert (NULL == d->proc_arm_stop); 1545 /* FIXME: this should be an assert and the test below
1546 should not be required, but testing is broken... */
1547 GNUNET_break (NULL == d->proc_arm_stop);
1548 if (NULL == d->proc_arm_stop)
1546 GNUNET_free (d); 1549 GNUNET_free (d);
1547 return; 1550 return;
1548 } 1551 }