aboutsummaryrefslogtreecommitdiffstats
path: root/test/Makefile.ssl
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>2000-02-06 15:56:59 +0000
committerUlf Möller <ulf@openssl.org>2000-02-06 15:56:59 +0000
commitcae55bfc68bed0a2d562891f11a75bf2145eb81e (patch)
tree4f36b19f130cee733b684d2827dfd65ae28f9626 /test/Makefile.ssl
parent0fad6cb7e7359dd0911ab54a80c1b3e10b378fd3 (diff)
downloadopenssl-cae55bfc68bed0a2d562891f11a75bf2145eb81e.tar.gz
Improve bntest slightly, and fix another bug in the BN library.
Diffstat (limited to 'test/Makefile.ssl')
-rw-r--r--test/Makefile.ssl13
1 files changed, 5 insertions, 8 deletions
diff --git a/test/Makefile.ssl b/test/Makefile.ssl
index 6607f63f9d..a3386d9a7e 100644
--- a/test/Makefile.ssl
+++ b/test/Makefile.ssl
@@ -13,6 +13,7 @@ INSTALLTOP= /usr/local/ssl
MAKEFILE= Makefile.ssl
MAKE= make -f $(MAKEFILE)
MAKEDEPEND= $(TOP)/util/domd $(TOP)
+PERL= perl
PEX_LIBS=
EX_LIBS= #-lnsl -lsocket
@@ -180,14 +181,10 @@ test_pkcs7:
test_bn:
@echo starting big number library test, could take a while...
-# This *should* work:
-# @(./$(BNTEST)|bc) | awk '{ \
-# Some broken bc's treat the pipe as a terminal :-(
-# By using a temporary file, errors detected by awk may be farther away from
-# the test that caused them; but even with the pipe there'd be some distance.
- @(./$(BNTEST) >tmp.bntest; echo quit >>tmp.bntest; bc tmp.bntest) | awk '{ \
-if ($$0 != "0") {print "error"; exit(1); } \
-if (((NR+1)%64) == 0) print NR+1," tests done"; }'
+ @./$(BNTEST) >tmp.bntest
+ @echo quit >>tmp.bntest
+ @echo "running bc"
+ @bc tmp.bntest 2>&1 | $(PERL) -e 'while (<STDIN>) {if (/^test (.*)/) {print STDERR "\nverify $$1";} elsif (!/^0$$/) {die "\nFailed! bc: $$_";} print STDERR "."; $$i++;} print STDERR "\n$$i tests passed\n"'
@echo 'test a^b%c implementations'
./$(EXPTEST)