mirror of
https://github.com/openssl/openssl.git
synced 2025-02-23 14:42:15 +08:00
Some of them make use of recipes/tconversion.pl. Reviewed-by: Rich Salz <rsalz@openssl.org>
17 lines
390 B
Perl
17 lines
390 B
Perl
#! /usr/bin/perl
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
use File::Spec::Functions qw/canonpath/;
|
|
use Test::More;
|
|
use OpenSSL::Test qw/:DEFAULT top_dir top_file/;
|
|
|
|
setup("test_verify");
|
|
|
|
plan tests => 1;
|
|
|
|
note("Expect some failures and expired certificate");
|
|
ok(run(app(["openssl", "verify", "-CApath", top_dir("certs", "demo"),
|
|
glob(top_file("certs", "demo", "*.pem"))])), "verying demo certs");
|