mirror of
https://github.com/openssl/openssl.git
synced 2024-12-03 05:41:46 +08:00
894025c642
These recipes all correspond to a compiled test program. 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_des");
|
|
|
|
plan tests => 1;
|
|
ok(run(test(["destest"])), "running destest");
|