openssl/test/recipes/90-test_gost2814789.t
Richard Levitte fd99c6b599 Change OpenSSL::Test to be an extension of Test::More
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>
2015-09-07 16:10:58 +02:00

13 lines
289 B
Perl

#! /usr/bin/perl
use strict;
use warnings;
use OpenSSL::Test qw/:DEFAULT top_dir/;
setup("test_gost2814789");
$ENV{OPENSSL_ENGINES} =
$ENV{BIN_D} ? top_dir($ENV{BIN_D}) : top_dir("engines", "ccgost");
plan tests => 1;
ok(run(test(["gost2814789test"])), 'running gost2814789test');