openssl/test/recipes/25-test_verify.t
Viktor Dukhovni d9e309a675 Fix verify(1) to report failure when verification fails
Regenerated expired test certificates, good for the next 100 years.

Reviewed-by: Dr. Stephen Henson <steve@openssl.org>
2016-01-13 17:55:17 -05:00

17 lines
409 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;
ok(run(app(["openssl", "verify", "-CApath", top_dir("certs", "demo"),
glob(top_file("certs", "demo", "*.pem"))])), "verifying demo certs");