1249259Sdim#! /usr/bin/env perl
2249259Sdim# Copyright 2021 The OpenSSL Project Authors. All Rights Reserved.
3249259Sdim#
4249259Sdim# Licensed under the Apache License 2.0 (the "License").  You may not use
5249259Sdim# this file except in compliance with the License.  You can obtain a copy
6249259Sdim# in the file LICENSE in the source distribution or at
7249259Sdim# https://www.openssl.org/source/license.html
8249259Sdim
9249259Sdimuse strict;
10249259Sdimuse File::Spec;
11249259Sdimuse OpenSSL::Test::Simple;
12249259Sdim
13249259Sdim# We must ensure that OPENSSL_CONF points at an empty file.  Otherwise, we
14249259Sdim# risk that the configuration file contains statements that load providers,
15249259Sdim# which defeats the purpose of this test.  The NUL device is good enough.
16249259Sdim$ENV{OPENSSL_CONF} = File::Spec->devnull();
17249259Sdim
18249259Sdimsimple_test("test_provider_pkey", "provider_pkey_test");
19249259Sdim