diff options
Diffstat (limited to 'test_crypto.c')
-rw-r--r-- | test_crypto.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/test_crypto.c b/test_crypto.c index 057754a..2d1b50a 100644 --- a/test_crypto.c +++ b/test_crypto.c @@ -302,16 +302,15 @@ test_all_auctions () if (auction_firstPrice != atype) /* others not yet implemented */ continue; -// for (size_t oc = 0; oc < outcome_last; oc++) -// { - size_t oc = outcome_public; + for (size_t oc = 0; oc < outcome_last; oc++) + { if (!test_setup_auction_data() || !test_auction (atype, oc)) { cleanup_auction_data (); return 0; } cleanup_auction_data (); -// } + } } return 1; |