summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2001-04-08 18:22:53 +0000
committerBodo Möller <bodo@openssl.org>2001-04-08 18:22:53 +0000
commit9cddbf14dbda732e72bc5113746f85cb7ee2b4ab (patch)
treea2153c7b0f045517bf15f61d73a565720e5b9730 /test
parent5f1fddbbe787e594de2efe746ac00143da655fcc (diff)
avoid '||' since Ultrix apparently doesn't understand it
Diffstat (limited to 'test')
-rw-r--r--test/Makefile.ssl2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Makefile.ssl b/test/Makefile.ssl
index f0e3233944..832f47b59b 100644
--- a/test/Makefile.ssl
+++ b/test/Makefile.ssl
@@ -198,7 +198,7 @@ test_bn:
@./$(BNTEST) >tmp.bntest
@echo quit >>tmp.bntest
@echo "running bc"
- @<tmp.bntest sh -c "`sh ./bctest || true`" | $(PERL) -e '$$i=0; while (<STDIN>) {if (/^test (.*)/) {print STDERR "\nverify $$1";} elsif (!/^0$$/) {die "\nFailed! bc: $$_";} else {print STDERR "."; $$i++;}} print STDERR "\n$$i tests passed\n"'
+ @<tmp.bntest sh -c "`sh ./bctest; true`" | $(PERL) -e '$$i=0; while (<STDIN>) {if (/^test (.*)/) {print STDERR "\nverify $$1";} elsif (!/^0$$/) {die "\nFailed! bc: $$_";} else {print STDERR "."; $$i++;}} print STDERR "\n$$i tests passed\n"'
@echo 'test a^b%c implementations'
./$(EXPTEST)