test/exptest.c: stop marking progress with a period
authorRichard Levitte <levitte@openssl.org>
Thu, 4 May 2017 03:26:07 +0000 (05:26 +0200)
committerRichard Levitte <levitte@openssl.org>
Thu, 4 May 2017 15:15:29 +0000 (17:15 +0200)
Because we now have TAP output for every mod_exp round, there's no
more need to mark the round with outputting a period.

Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/3380)

test/exptest.c

index fa4dfe35778269404a387db1dab1e6ca323e523e..e15c0519b9198f2dde507b1994cb34c57de6f10a 100644 (file)
@@ -173,12 +173,9 @@ static int test_mod_exp(int round)
         || !TEST_true(BN_mod_exp_mont_consttime(r_mont_const, a, b, m, ctx, NULL)))
         goto err;
 
-    if (TEST_int_eq(BN_cmp(r_simple, r_mont), 0)
-        && TEST_int_eq(BN_cmp(r_simple, r_recp), 0)
-        && TEST_int_eq(BN_cmp(r_simple, r_mont_const), 0)) {
-        printf(".");
-        fflush(stdout);
-    } else {
+    if (!TEST_int_eq(BN_cmp(r_simple, r_mont), 0)
+        || !TEST_int_eq(BN_cmp(r_simple, r_recp), 0)
+        || !TEST_int_eq(BN_cmp(r_simple, r_mont_const), 0)) {
         if (BN_cmp(r_simple, r_mont) != 0)
             fprintf(stderr, "simple and mont results differ\n");
         if (BN_cmp(r_simple, r_mont_const) != 0)