Adjust the verify_extra test recipe to its executable

The verify_extra_test was recently changed to take its parameters as
arguments instead of having them hardcoded.

Reviewed-by: Rich Salz <rsalz@openssl.org>
This commit is contained in:
Richard Levitte 2015-09-07 16:26:04 +02:00
parent ce249fac57
commit 6b33d10686

View File

@ -1,5 +1,12 @@
#! /usr/bin/perl
use OpenSSL::Test::Simple;
use OpenSSL::Test qw/:DEFAULT top_file/;
simple_test("test_verify_extra", "verify_extra_test");
setup("test_verify_extra");
plan tests => 1;
ok(run(test(["verify_extra_test",
top_file("test", "certs", "roots.pem"),
top_file("test", "certs", "untrusted.pem"),
top_file("test", "certs", "bad.pem")])));