diff options
author | Simon Josefsson <simon@josefsson.org> | 2004-08-23 15:43:32 +0000 |
---|---|---|
committer | Simon Josefsson <simon@josefsson.org> | 2004-08-23 15:43:32 +0000 |
commit | 49612ae5ac83318e524130b5f1b4ccb3532175d1 (patch) | |
tree | a1c0b98e3344719395b7f26ea956f105a13efdc9 /tests | |
parent | c58300e729bad9e3e00e8d5a1487df9d01c94534 (diff) | |
download | gnutls-49612ae5ac83318e524130b5f1b4ccb3532175d1.tar.gz |
Fix.
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/chain | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/chain b/tests/chain index c229447404..848b392cf9 100755 --- a/tests/chain +++ b/tests/chain @@ -27,10 +27,10 @@ test -d X509tests || tar xfz x509tests.tgz i=1 while test -d X509tests/test$i; do - find X509tests/test$i -name *.crl -print0 |sort -r -z|xargs -n1 --null certtool --crl-info --inder --infile > chain$i.pem - find X509tests/test$i -name E*.crt -print0 |sort -r -z|xargs -n1 --null certtool --certificate-info --inder --infile >> chain$i.pem - find X509tests/test$i -name I*.crt -print0 |sort -r -z|xargs -n1 --null certtool --certificate-info --inder --infile >> chain$i.pem - find X509tests/test$i -name T*.crt -print0 |sort -r -z|xargs -n1 --null certtool --certificate-info --inder --infile >> chain$i.pem + find X509tests/test$i -name *.crl -print0 |sort -r -z|xargs -n1 --null $CERTTOOL --crl-info --inder --infile > chain$i.pem + find X509tests/test$i -name E*.crt -print0 |sort -r -z|xargs -n1 --null $CERTTOOL --certificate-info --inder --infile >> chain$i.pem + find X509tests/test$i -name I*.crt -print0 |sort -r -z|xargs -n1 --null $CERTTOOL --certificate-info --inder --infile >> chain$i.pem + find X509tests/test$i -name T*.crt -print0 |sort -r -z|xargs -n1 --null $CERTTOOL --certificate-info --inder --infile >> chain$i.pem $CERTTOOL -e --infile chain$i.pem > out 2>&1 rc=$? if test $rc != 0; then |