openssl/test/recipes/25-test_verify.t
Andy Polyakov 4ada8be2a6 Test suite: minimal required to get mingw 'make test' work under Linux.
(part by Alessandro Ghedini)

Reviewed-by: Richard Levitte <levitte@openssl.org>
2015-10-13 19:46:50 +02:00

18 lines
461 B
Perl

#! /usr/bin/perl
use strict;
use warnings;
use File::Spec::Functions qw/canonpath/;
use OpenSSL::Test qw/:DEFAULT top_dir top_file/;
setup("test_verify");
plan skip_all => "no rehash.time was found."
unless (-f top_file("rehash.time"));
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");