summaryrefslogtreecommitdiffstats
path: root/test/recipes/15-test_ec.t
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-01-30 01:05:33 +0100
committerRichard Levitte <levitte@openssl.org>2016-02-09 11:43:20 +0100
commit42e0ccdfe851c9a153d3e90746a2b8561dc9b1e3 (patch)
tree32b3a8b198c14f54ad5138598ae543dac45d2446 /test/recipes/15-test_ec.t
parentd7465918867b107058228938e7f5c9fa032ef708 (diff)
unified build scheme: adjust test framework for out of source build tree
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>
Diffstat (limited to 'test/recipes/15-test_ec.t')
-rw-r--r--test/recipes/15-test_ec.t10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/recipes/15-test_ec.t b/test/recipes/15-test_ec.t
index 4701dc80db..48b8ce8cda 100644
--- a/test/recipes/15-test_ec.t
+++ b/test/recipes/15-test_ec.t
@@ -4,14 +4,14 @@ use strict;
use warnings;
use File::Spec;
-use OpenSSL::Test qw/:DEFAULT top_file/;
+use OpenSSL::Test qw/:DEFAULT srctop_file/;
use OpenSSL::Test::Utils;
setup("test_ec");
plan tests => 5;
-require_ok(top_file('test','recipes','tconversion.pl'));
+require_ok(srctop_file('test','recipes','tconversion.pl'));
ok(run(test(["ectest"])), "running ectest");
@@ -20,12 +20,12 @@ ok(run(test(["ectest"])), "running ectest");
if disabled("ec");
subtest 'ec conversions -- private key' => sub {
- tconversion("ec", top_file("test","testec-p256.pem"));
+ tconversion("ec", srctop_file("test","testec-p256.pem"));
};
subtest 'ec conversions -- private key PKCS#8' => sub {
- tconversion("ec", top_file("test","testec-p256.pem"), "pkey");
+ tconversion("ec", srctop_file("test","testec-p256.pem"), "pkey");
};
subtest 'ec conversions -- public key' => sub {
- tconversion("ec", top_file("test","testecpub-p256.pem"), "ec", "-pubin", "-pubout");
+ tconversion("ec", srctop_file("test","testecpub-p256.pem"), "ec", "-pubin", "-pubout");
};
}