mirror of
https://github.com/openssl/openssl.git
synced 2024-12-03 05:41:46 +08:00
fd99c6b599
It became tedious as well as error prone to have all recipes use Test::More as well as OpenSSL::Test. The easier way is to make OpenSSL::Test an extension of Test::More, thereby having all version checks as well as future checks firmly there. Additionally, that allows us to extend existing Test::More functions if the need would arise. Reviewed-by: Rich Salz <rsalz@openssl.org>
13 lines
223 B
Perl
13 lines
223 B
Perl
#! /usr/bin/perl
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
use OpenSSL::Test qw/:DEFAULT top_file/;
|
|
|
|
setup("test_evp");
|
|
|
|
plan tests => 1;
|
|
ok(run(test(["evp_test", top_file("test", "evptests.txt")])),
|
|
"running evp_test evptests.txt");
|