diff options
author | Richard Levitte <levitte@openssl.org> | 2015-09-07 16:26:04 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2015-09-08 00:54:49 +0200 |
commit | 6b33d10686993191a99ad758cb59fb89c3d7abda (patch) | |
tree | a5cc135d0a399bcbed9ce23e7f946ab77ec49b2a /test | |
parent | GH391: Apple port (diff) | |
download | openssl-6b33d10686993191a99ad758cb59fb89c3d7abda.tar.xz openssl-6b33d10686993191a99ad758cb59fb89c3d7abda.zip |
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>
Diffstat (limited to 'test')
-rw-r--r-- | test/recipes/70-test_verify_extra.t | 11 |
1 files changed, 9 insertions, 2 deletions
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")]))); |