test_mod_mul is useful, let's run it more often.
authorUlf Möller <ulf@openssl.org>
Wed, 6 Dec 2000 04:14:30 +0000 (04:14 +0000)
committerUlf Möller <ulf@openssl.org>
Wed, 6 Dec 2000 04:14:30 +0000 (04:14 +0000)
crypto/bn/bntest.c

index 91563dd22228ad1a314a24c4576f06027f66f7de..12d68fc526c665178070199437a99e3adefdc921 100644 (file)
@@ -703,7 +703,7 @@ int test_mod(BIO *bp, BN_CTX *ctx)
 int test_mod_mul(BIO *bp, BN_CTX *ctx)
        {
        BIGNUM *a,*b,*c,*d,*e;
-       int i;
+       int i,j;
 
        a=BN_new();
        b=BN_new();
@@ -711,6 +711,7 @@ int test_mod_mul(BIO *bp, BN_CTX *ctx)
        d=BN_new();
        e=BN_new();
 
+       for (j=0; j<3; j++) {
        BN_bntest_rand(c,1024,0,0); /**/
        for (i=0; i<num0; i++)
                {
@@ -761,6 +762,7 @@ int test_mod_mul(BIO *bp, BN_CTX *ctx)
                    return 0;
                    }
                }
+       }
        BN_free(a);
        BN_free(b);
        BN_free(c);