Use bigger hammer to disable benchmarks

This commit is contained in:
Theo Buehler 2022-12-18 01:30:19 +01:00
parent da826ecc77
commit 320501da40

View File

@ -1,26 +1,15 @@
--- tests/bn_shift.c.orig Sun Dec 18 01:05:29 2022 --- tests/bn_shift.c.orig Sun Dec 18 01:05:29 2022
+++ tests/bn_shift.c Sun Dec 18 01:15:00 2022 +++ tests/bn_shift.c Sun Dec 18 01:29:36 2022
@@ -26,6 +26,10 @@ @@ -314,6 +314,8 @@ test_bn_rshift_to_zero(void)
#include <openssl/bn.h>
+#ifndef _MSC_VER
+#define INCLUDE_BENCHMARKS
+#endif
+
static const char *bn_shift_want_hex = \
"02AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" \
"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8";
@@ -314,6 +318,8 @@ test_bn_rshift_to_zero(void)
return failed; return failed;
} }
+#ifdef INCLUDE_BENCHMARKS +#if 0
+ +
static void static void
benchmark_bn_lshift1(BIGNUM *bn) benchmark_bn_lshift1(BIGNUM *bn)
{ {
@@ -507,9 +513,12 @@ benchmark_run(const struct benchmark *bm, int seconds) @@ -507,9 +509,12 @@ benchmark_run(const struct benchmark *bm, int seconds)
BN_free(bn); BN_free(bn);
} }
@ -29,11 +18,11 @@
static void static void
benchmark_bn_shift(void) benchmark_bn_shift(void)
{ {
+#ifdef INCLUDE_BENCHMARKS +#if 0
const struct benchmark *bm; const struct benchmark *bm;
size_t i; size_t i;
@@ -517,6 +526,9 @@ benchmark_bn_shift(void) @@ -517,6 +522,9 @@ benchmark_bn_shift(void)
bm = &benchmarks[i]; bm = &benchmarks[i];
benchmark_run(bm, 5); benchmark_run(bm, 5);
} }