From: Richard Levitte Date: Mon, 7 Sep 2015 14:26:04 +0000 (+0200) Subject: Adjust the verify_extra test recipe to its executable X-Git-Tag: OpenSSL_1_1_0-pre1~645 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=6b33d10686993191a99ad758cb59fb89c3d7abda 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 --- diff --git a/test/recipes/70-test_verify_extra.t b/test/recipes/70-test_verify_extra.t index 3ef4a27d4d..eec8904ca9 100644 --- a/test/recipes/70-test_verify_extra.t +++ b/test/recipes/70-test_verify_extra.t @@ -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")])));