summaryrefslogtreecommitdiff
path: root/regress
diff options
context:
space:
mode:
Diffstat (limited to 'regress')
-rw-r--r--regress/lib/libcrypto/bn/Makefile8
-rw-r--r--regress/lib/libcrypto/bn/bn_mul_div.c (renamed from regress/lib/libcrypto/bn/bn_mul.c)2
2 files changed, 5 insertions, 5 deletions
diff --git a/regress/lib/libcrypto/bn/Makefile b/regress/lib/libcrypto/bn/Makefile
index ad15acfac4f..c3d9def45c3 100644
--- a/regress/lib/libcrypto/bn/Makefile
+++ b/regress/lib/libcrypto/bn/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.19 2023/01/21 13:24:39 jsing Exp $
+# $OpenBSD: Makefile,v 1.20 2023/01/29 15:18:49 jsing Exp $
PROGS += bn_add_sub
PROGS += bn_cmp
@@ -8,7 +8,7 @@ PROGS += bn_mod_exp2_mont
PROGS += bn_mod_exp_zero
PROGS += bn_mod_sqrt
PROGS += bn_mont
-PROGS += bn_mul
+PROGS += bn_mul_div
PROGS += bn_primes
PROGS += bn_rand_interval
PROGS += bn_shift
@@ -61,8 +61,8 @@ run-bc: bn_test.out
CLEANFILES += bn_test.out bc.out
-benchmark: bn_mul bn_shift
- ./bn_mul --benchmark
+benchmark: bn_mul_div bn_shift
+ ./bn_mul_div --benchmark
./bn_shift --benchmark
.PHONY: benchmark
diff --git a/regress/lib/libcrypto/bn/bn_mul.c b/regress/lib/libcrypto/bn/bn_mul_div.c
index de1f5c6b76f..2ebb06f8214 100644
--- a/regress/lib/libcrypto/bn/bn_mul.c
+++ b/regress/lib/libcrypto/bn/bn_mul_div.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: bn_mul.c,v 1.1 2023/01/21 13:24:39 jsing Exp $ */
+/* $OpenBSD: bn_mul_div.c,v 1.1 2023/01/29 15:18:49 jsing Exp $ */
/*
* Copyright (c) 2023 Joel Sing <jsing@openbsd.org>
*