openssl/test/recipes/90-test_constant_time.t
Richard Levitte 127d25903f Add recipes for misc other things we want to test
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>
2015-09-07 16:10:57 +02:00

13 lines
197 B
Perl

#! /usr/bin/perl
use strict;
use warnings;
use Test::More;
use OpenSSL::Test;
setup("test_constant_time");
plan tests => 1;
ok(run(test(["constant_time_test"])), "running constant_time_test");