diff options
author | Brent Cook <busterb@gmail.com> | 2022-07-10 22:11:37 -0500 |
---|---|---|
committer | Brent Cook <busterb@gmail.com> | 2022-07-10 22:11:37 -0500 |
commit | c6dea2878e5c4c04e1edba103a6223a4f4b3b58f (patch) | |
tree | 264444091fc82ca30d23392486b2701297c48a2f | |
parent | 2518dbc9480f9e361f99cd790afe3f94f97053ff (diff) | |
download | portable-c6dea2878e5c4c04e1edba103a6223a4f4b3b58f.tar.gz portable-c6dea2878e5c4c04e1edba103a6223a4f4b3b58f.tar.bz2 portable-c6dea2878e5c4c04e1edba103a6223a4f4b3b58f.zip |
fix test when openssl(1) is not in $PATH
Diffstat (limited to '')
-rwxr-xr-x | tests/ssltest.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/ssltest.sh b/tests/ssltest.sh index 4283501..22a8936 100755 --- a/tests/ssltest.sh +++ b/tests/ssltest.sh | |||
@@ -22,5 +22,6 @@ if [ -z $srcdir ]; then | |||
22 | srcdir=. | 22 | srcdir=. |
23 | fi | 23 | fi |
24 | 24 | ||
25 | $srcdir/testssl $srcdir/server1-rsa.pem $srcdir/server1-rsa-chain.pem $srcdir/ca-root-rsa.pem | 25 | $srcdir/testssl $srcdir/server1-rsa.pem $srcdir/server1-rsa-chain.pem \ |
26 | 26 | $srcdir/ca-root-rsa.pem \ | |
27 | $ssltest_bin $openssl_bin | ||