openssl/test/recipes/03-test_internal.t
Richard Levitte cf551a51d2 Link internal tests with static OpenSSL libraries when needed
Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/1889)
2016-11-10 15:51:43 +01:00

33 lines
1 KiB
Perl

#! /usr/bin/env perl
# Copyright 2015-2016 The OpenSSL Project Authors. All Rights Reserved.
#
# Licensed under the OpenSSL license (the "License"). You may not use
# this file except in compliance with the License. You can obtain a copy
# in the file LICENSE in the source distribution or at
# https://www.openssl.org/source/license.html
use strict;
use OpenSSL::Test qw/:DEFAULT bldtop_file/;
use OpenSSL::Test::Utils;
setup("test_internal");
my $shared_windows = $^O eq 'MSWin32' && !disabled("shared");
my %known_internal_tests =
( mdc2_internal_test => !disabled("mdc2"),
poly1305_internal_test => !disabled("poly1305") && !$shared_windows,
modes_internal_test => !$shared_windows,
asn1_internal_test => !$shared_windows,
x509_internal_test => !$shared_windows );
plan tests => scalar keys %known_internal_tests;
foreach (keys %known_internal_tests) {
SKIP:
{
skip "Skipping $_, it's disabled in this configuration", 1
unless $known_internal_tests{$_};
ok(run(test([$_])), "Running $_");
}
}