summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortb <>2023-04-03 21:33:16 +0000
committertb <>2023-04-03 21:33:16 +0000
commit5a989991770c9827a2928cd8122331b39988e54b (patch)
tree51fbd75ffb143bf2ad8a3199795eaf9062699201
parent7e10dc1e883fb54dbd087e20175683e3202a833a (diff)
downloadopenbsd-5a989991770c9827a2928cd8122331b39988e54b.tar.gz
openbsd-5a989991770c9827a2928cd8122331b39988e54b.tar.bz2
openbsd-5a989991770c9827a2928cd8122331b39988e54b.zip
Link bn_gcd test to regress
-rw-r--r--src/regress/lib/libcrypto/bn/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/regress/lib/libcrypto/bn/Makefile b/src/regress/lib/libcrypto/bn/Makefile
index 428259a5f9..3e51cf84e5 100644
--- a/src/regress/lib/libcrypto/bn/Makefile
+++ b/src/regress/lib/libcrypto/bn/Makefile
@@ -1,7 +1,8 @@
1# $OpenBSD: Makefile,v 1.26 2023/03/26 22:10:03 tb Exp $ 1# $OpenBSD: Makefile,v 1.27 2023/04/03 21:33:16 tb Exp $
2 2
3PROGS += bn_add_sub 3PROGS += bn_add_sub
4PROGS += bn_cmp 4PROGS += bn_cmp
5PROGS += bn_gcd
5PROGS += bn_isqrt 6PROGS += bn_isqrt
6PROGS += bn_mod_exp 7PROGS += bn_mod_exp
7PROGS += bn_mod_sqrt 8PROGS += bn_mod_sqrt
@@ -15,6 +16,7 @@ PROGS += bn_to_string
15PROGS += bn_unit 16PROGS += bn_unit
16PROGS += bn_word 17PROGS += bn_word
17 18
19STATIC_LINK += bn_gcd
18STATIC_LINK += bn_isqrt 20STATIC_LINK += bn_isqrt
19STATIC_LINK += bn_mod_exp 21STATIC_LINK += bn_mod_exp
20STATIC_LINK += bn_rand_interval 22STATIC_LINK += bn_rand_interval