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;