mirror of
https://github.com/openssl/openssl.git
synced 2024-12-26 02:13:45 +08:00
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>
13 lines
165 B
Perl
13 lines
165 B
Perl
#! /usr/bin/perl
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
use Test::More;
|
|
use OpenSSL::Test;
|
|
|
|
setup("test_ige");
|
|
|
|
plan tests => 1;
|
|
ok(run(test(["igetest"])), "running igetest");
|