42e0ccdfe8
To be able to run tests when we've built in a directory other than the source tree, the testing framework needs a few adjustments. test/testlib/OpenSSL/Test.pm needs to know where it can find shlib_wrap.sh, and a number of other tests need to be told a different place to find engines than what they may be able to figure out on their own. Relying to $TOP is not enough, $SRCTOP and $BLDTOP can be used as an alternative. As part of this change, top_file and top_dir are removed and srctop_file, bldtop_file, srctop_dir and bldtop_dir take their place. Reviewed-by: Ben Laurie <ben@openssl.org>
33 lines
835 B
Perl
33 lines
835 B
Perl
#! /usr/bin/perl
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
use File::Spec;
|
|
use OpenSSL::Test qw/:DEFAULT srctop_file/;
|
|
use OpenSSL::Test::Utils;
|
|
|
|
setup("test_dsa");
|
|
|
|
plan tests => 6;
|
|
|
|
require_ok(srctop_file('test','recipes','tconversion.pl'));
|
|
|
|
ok(run(test(["dsatest"])), "running dsatest");
|
|
ok(run(test(["dsatest", "-app2_1"])), "running dsatest -app2_1");
|
|
|
|
SKIP: {
|
|
skip "Skipping dsa conversion test", 3
|
|
if disabled("dsa");
|
|
|
|
subtest 'dsa conversions -- private key' => sub {
|
|
tconversion("dsa", srctop_file("test","testdsa.pem"));
|
|
};
|
|
subtest 'dsa conversions -- private key PKCS#8' => sub {
|
|
tconversion("dsa", srctop_file("test","testdsa.pem"), "pkey");
|
|
};
|
|
subtest 'dsa conversions -- public key' => sub {
|
|
tconversion("dsa", srctop_file("test","testdsapub.pem"), "dsa",
|
|
"-pubin", "-pubout");
|
|
};
|
|
}
|