2019-10-18 05:53:44 +08:00
|
|
|
#! /usr/bin/env perl
|
2020-02-16 17:54:08 +08:00
|
|
|
# Copyright 2020 The OpenSSL Project Authors. All Rights Reserved.
|
2019-10-18 05:53:44 +08:00
|
|
|
#
|
|
|
|
# Licensed under the Apache License 2.0 (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 OpenSSL::Test::Simple;
|
2020-02-28 06:08:59 +08:00
|
|
|
use OpenSSL::Test qw/:DEFAULT srctop_dir/;
|
2019-10-18 05:53:44 +08:00
|
|
|
|
2020-02-28 06:08:59 +08:00
|
|
|
setup("test_evp_pkey_provided");
|
|
|
|
|
|
|
|
plan tests => 1;
|
|
|
|
|
|
|
|
ok(run(test(["evp_pkey_provided_test",
|
|
|
|
srctop_dir("test", "recipes", "30-test_evp_pkey_provided")])),
|
|
|
|
"running evp_pkey_provided_test");
|