127d25903f
Note that this required a change in constant_time_test.c, as it says "ok", which interferes with what Test::Harness expects to see. I had constant_time_test.c say "success" instead. Reviewed-by: Rich Salz <rsalz@openssl.org>
15 lines
305 B
Perl
15 lines
305 B
Perl
#! /usr/bin/perl
|
|
|
|
use strict;
|
|
use warnings;
|
|
use Test::More;
|
|
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');
|