Add keygen test data
[openssl.git] / test / recipes / 90-test_shlibload.t
1 #! /usr/bin/env perl
2 # Copyright 2016 The OpenSSL Project Authors. All Rights Reserved.
3 #
4 # Licensed under the OpenSSL license (the "License").  You may not use
5 # this file except in compliance with the License.  You can obtain a copy
6 # in the file LICENSE in the source distribution or at
7 # https://www.openssl.org/source/license.html
8
9
10 use OpenSSL::Test qw/:DEFAULT bldtop_dir/;
11 use OpenSSL::Test::Utils;
12
13 #Load configdata.pm
14
15 BEGIN {
16     setup("test_shlibload");
17 }
18 use lib bldtop_dir('.');
19 use configdata;
20
21 plan skip_all => "Test only supported in a shared build" if disabled("shared");
22
23 plan tests => 3;
24
25 my $libcrypto_idx = $unified_info{rename}->{libcrypto} // "libcrypto";
26 my $libssl_idx = $unified_info{rename}->{libssl} // "libssl";
27 my $libcrypto =
28     $unified_info{sharednames}->{$libcrypto_idx}.$target{shared_extension_simple};
29 my $libssl =
30     $unified_info{sharednames}->{$libssl_idx}.$target{shared_extension_simple};
31
32 ok(run(test(["shlibloadtest", "-crypto_first", $libcrypto, $libssl])),
33    "running shlibloadtest -crypto_first");
34 ok(run(test(["shlibloadtest", "-ssl_first", $libcrypto, $libssl])),
35    "running shlibloadtest -ssl_first");
36 ok(run(test(["shlibloadtest", "-just_crypto", $libcrypto, $libssl])),
37    "running shlibloadtest -just_crypto");
38