diff options
author | Richard Levitte <levitte@openssl.org> | 2017-05-04 05:26:07 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2017-05-04 17:15:29 +0200 |
commit | 7104351cd9f2289d9ffe7812668738a2c0fcb515 (patch) | |
tree | 11fa2d47f3277bd788518ebcc5ab317ef356642f /test | |
parent | Updates to serverinfo fix based on review feedback (diff) | |
download | openssl-7104351cd9f2289d9ffe7812668738a2c0fcb515.tar.xz openssl-7104351cd9f2289d9ffe7812668738a2c0fcb515.zip |
test/exptest.c: stop marking progress with a period
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)
Diffstat (limited to 'test')
-rw-r--r-- | test/exptest.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/test/exptest.c b/test/exptest.c index fa4dfe3577..e15c0519b9 100644 --- a/test/exptest.c +++ b/test/exptest.c @@ -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) |