mirror of
https://github.com/openssl/openssl.git
synced 2024-12-09 05:51:54 +08:00
4fb35f8fcb
Reviewed-by: Rich Salz <rsalz@openssl.org>
14 lines
239 B
Perl
14 lines
239 B
Perl
#! /usr/bin/perl
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
use Test::More;
|
|
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");
|