mirror of
https://github.com/openssl/openssl.git
synced 2024-12-26 02:13:45 +08:00
4650de3e43
Some of them make use of recipes/tconversion.pl. Reviewed-by: Rich Salz <rsalz@openssl.org>
19 lines
320 B
Perl
19 lines
320 B
Perl
#! /usr/bin/perl
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
use File::Spec;
|
|
use Test::More;
|
|
use OpenSSL::Test qw/:DEFAULT top_file/;
|
|
|
|
setup("test_sid");
|
|
|
|
plan tests => 2;
|
|
|
|
require_ok(top_file('test','recipes','tconversion.pl'));
|
|
|
|
subtest 'sid conversions' => sub {
|
|
tconversion("sid", top_file("test","testsid.pem"), "sess_id");
|
|
};
|