reduce number of tests in bn_rand_interval.
authortb <tb@openbsd.org>
Wed, 8 Mar 2023 06:44:45 +0000 (06:44 +0000)
committertb <tb@openbsd.org>
Wed, 8 Mar 2023 06:44:45 +0000 (06:44 +0000)
This is only testing basic functionality anyway, so 10000 tests are more
than enough.

regress/lib/libcrypto/bn/bn_rand_interval.c

index 032edfb..3c5eaac 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: bn_rand_interval.c,v 1.1 2022/12/01 20:50:10 tb Exp $ */
+/*     $OpenBSD: bn_rand_interval.c,v 1.2 2023/03/08 06:44:45 tb Exp $ */
 /*
  * Copyright (c) 2018 Theo Buehler <tb@openbsd.org>
  *
@@ -20,7 +20,7 @@
 
 #include <openssl/bn.h>
 
-#define NUM_TESTS 1000000
+#define NUM_TESTS 10000
 
 int bn_rand_interval(BIGNUM *rnd, const BIGNUM *lower_incl,
     const BIGNUM *upper_excl);