aboutsummaryrefslogtreecommitdiff
path: root/test_brandt.c
diff options
context:
space:
mode:
Diffstat (limited to 'test_brandt.c')
-rw-r--r--test_brandt.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/test_brandt.c b/test_brandt.c
index da74af2..a386124 100644
--- a/test_brandt.c
+++ b/test_brandt.c
@@ -26,7 +26,6 @@
#include "brandt.h"
#include "crypto.h"
-#include "test.h"
#include "util.h"
@@ -317,12 +316,14 @@ test_auctions ()
int
main (int argc, char *argv[])
{
+ int ret = 0;
struct GNUNET_CRYPTO_EccDlogContext *edc;
edc = GNUNET_CRYPTO_ecc_dlog_prepare (1024, 16);
BRANDT_init (edc);
- RUN (test_auctions);
+ if (!test_auctions())
+ ret = 1;
GNUNET_CRYPTO_ecc_dlog_release (edc);
return ret;