2017-04-06 00:40:22 +08:00
|
|
|
#! /usr/bin/env perl
|
2021-03-11 21:27:36 +08:00
|
|
|
# Copyright 2017-2021 The OpenSSL Project Authors. All Rights Reserved.
|
2017-04-06 00:40:22 +08:00
|
|
|
#
|
2018-12-06 20:05:25 +08:00
|
|
|
# Licensed under the Apache License 2.0 (the "License"). You may not use
|
2017-04-06 00:40:22 +08:00
|
|
|
# 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 OpenSSL::Test;
|
|
|
|
use OpenSSL::Test::Utils;
|
2019-07-31 18:54:34 +08:00
|
|
|
use OpenSSL::Test qw/:DEFAULT data_file srctop_file bldtop_dir/;
|
2020-02-03 23:34:58 +08:00
|
|
|
use Cwd qw(abs_path);
|
2017-04-06 00:40:22 +08:00
|
|
|
|
|
|
|
setup("test_external_krb5");
|
|
|
|
|
2017-05-06 16:29:16 +08:00
|
|
|
plan skip_all => "No external tests in this configuration"
|
2017-05-06 05:08:55 +08:00
|
|
|
if disabled("external-tests");
|
2017-05-06 16:29:16 +08:00
|
|
|
plan skip_all => "krb5 not available"
|
2021-04-14 21:12:52 +08:00
|
|
|
if ! -f srctop_file("krb5", "src", "configure.ac");
|
2017-04-06 00:40:22 +08:00
|
|
|
|
2017-05-06 05:08:55 +08:00
|
|
|
plan tests => 1;
|
2017-04-06 00:40:22 +08:00
|
|
|
|
2020-04-09 01:05:27 +08:00
|
|
|
$ENV{OPENSSL_MODULES} = abs_path(bldtop_dir("providers"));
|
2020-02-03 23:34:58 +08:00
|
|
|
$ENV{OPENSSL_CONF} = abs_path(srctop_file("test", "default-and-legacy.cnf"));
|
2019-07-31 18:54:34 +08:00
|
|
|
|
2017-05-06 05:08:55 +08:00
|
|
|
ok(run(cmd([data_file("krb5.sh")])), "running krb5 tests");
|