6b33d10686
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>
12 lines
306 B
Raku
12 lines
306 B
Raku
#! /usr/bin/perl
|
|
|
|
use OpenSSL::Test qw/:DEFAULT top_file/;
|
|
|
|
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")])));
|