Use BIO not FILE for test file
[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 =
26     $unified_info{sharednames}->{libcrypto}.$target{shared_extension_simple};
27 my $libssl =
28     $unified_info{sharednames}->{libssl}.$target{shared_extension_simple};
29
30 ok(run(test(["shlibloadtest", "-crypto_first", $libcrypto, $libssl])),
31    "running shlibloadtest -crypto_first");
32 ok(run(test(["shlibloadtest", "-ssl_first", $libcrypto, $libssl])),
33    "running shlibloadtest -ssl_first");
34 ok(run(test(["shlibloadtest", "-just_crypto", $libcrypto, $libssl])),
35    "running shlibloadtest -just_crypto");
36