summaryrefslogtreecommitdiff
path: root/src/regress/lib/libcrypto/bn/general/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/regress/lib/libcrypto/bn/general/Makefile')
-rw-r--r--src/regress/lib/libcrypto/bn/general/Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/regress/lib/libcrypto/bn/general/Makefile b/src/regress/lib/libcrypto/bn/general/Makefile
index 6b7919eb53..fec9575d0e 100644
--- a/src/regress/lib/libcrypto/bn/general/Makefile
+++ b/src/regress/lib/libcrypto/bn/general/Makefile
@@ -1,8 +1,9 @@
1# $OpenBSD: Makefile,v 1.7 2020/12/17 00:51:11 bluhm Exp $ 1# $OpenBSD: Makefile,v 1.8 2022/03/10 04:39:49 tb Exp $
2 2
3.include "../../Makefile.inc" 3.include "../../Makefile.inc"
4 4
5PROGS += bntest 5PROGS += bntest
6PROGS += bn_mod_exp2_mont
6PROGS += bn_to_string 7PROGS += bn_to_string
7 8
8LDADD = ${CRYPTO_INT} 9LDADD = ${CRYPTO_INT}
@@ -20,6 +21,10 @@ run-bc: bntest.out
20 bc < bntest.out | tee bc.out | grep -v '^0$$' 21 bc < bntest.out | tee bc.out | grep -v '^0$$'
21 ! grep -v '^test ' <bc.out | grep -v '^0$$' 22 ! grep -v '^test ' <bc.out | grep -v '^0$$'
22 23
24REGRESS_TARGETS += run-bn_mod_exp2_mont
25run-bn_mod_exp2_mont: bn_mod_exp2_mont
26 ./bn_mod_exp2_mont
27
23REGRESS_TARGETS += run-bn_to_string 28REGRESS_TARGETS += run-bn_to_string
24run-bn_to_string: bn_to_string 29run-bn_to_string: bn_to_string
25 ./bn_to_string 30 ./bn_to_string