X-Git-Url: https://git.openssl.org/?a=blobdiff_plain;ds=sidebyside;f=test%2Ftverify.com;h=021d701d79a9a11fd9428e487225e5b9602b4c4a;hb=26397d2e8cdd147cf4025e46b803a9d607c32be5;hp=2060184d1efc4e3ba9c27159efbe3c003ea2d382;hpb=9fc9b55237d3f8abb0f0efb2bf26bc58bcd234bb;p=openssl.git diff --git a/test/tverify.com b/test/tverify.com index 2060184d1e..021d701d79 100644 --- a/test/tverify.com +++ b/test/tverify.com @@ -8,22 +8,22 @@ $ copy/concatenate [-.certs]*.pem certs.tmp $ $ old_f := $ loop_certs: -$ c := NO +$ verify := NO +$ more := YES $ certs := $ loop_certs2: $ f = f$search("[-.certs]*.pem") $ if f .nes. "" .and. f .nes. old_f $ then $ certs = certs + " [-.certs]" + f$parse(f,,,"NAME") + ".pem" -$ c := YES +$ verify := YES $ if f$length(certs) .lt. 180 then goto loop_certs2 +$ else +$ more := NO $ endif $ certs = certs - " " $ -$ if c -$ then -$ mcr 'exe_dir'openssl verify "-CAfile" certs.tmp 'certs' -$ goto loop_certs -$ endif +$ if verify then mcr 'exe_dir'openssl verify "-CAfile" certs.tmp 'certs' +$ if more then goto loop_certs $ $ delete certs.tmp;*