mirror of
https://github.com/openssl/openssl.git
synced 2024-12-09 05:51:54 +08:00
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>
18 lines
470 B
Perl
18 lines
470 B
Perl
#! /usr/bin/perl
|
|
|
|
use strict;
|
|
use warnings;
|
|
use OpenSSL::Test qw/:DEFAULT srctop_file/;
|
|
use OpenSSL::Test::Utils;
|
|
|
|
setup("test_dane");
|
|
|
|
plan skip_all => "test_dane uses ec which is not supported by this OpenSSL build"
|
|
if disabled("ec");
|
|
|
|
plan tests => 1; # The number of tests being performed
|
|
|
|
ok(run(test(["danetest", "example.com",
|
|
srctop_file("test", "danetest.pem"),
|
|
srctop_file("test", "danetest.in")])), "dane tests");
|