1ef5fc3feSchristos#! /usr/bin/env perl
2*66bae5e7Schristos# Copyright 2015-2021 The OpenSSL Project Authors. All Rights Reserved.
3ef5fc3feSchristos#
4*66bae5e7Schristos# Licensed under the Apache License 2.0 (the "License").  You may not use
5ef5fc3feSchristos# this file except in compliance with the License.  You can obtain a copy
6ef5fc3feSchristos# in the file LICENSE in the source distribution or at
7ef5fc3feSchristos# https://www.openssl.org/source/license.html
8ef5fc3feSchristos
9ef5fc3feSchristos
10ef5fc3feSchristosuse strict;
11ef5fc3feSchristosuse warnings;
12ef5fc3feSchristos
13*66bae5e7Schristosuse OpenSSL::Test qw/:DEFAULT srctop_file/;
14*66bae5e7Schristosuse OpenSSL::Test::Utils;
15ef5fc3feSchristos
16ef5fc3feSchristossetup("test_engine");
17ef5fc3feSchristos
18*66bae5e7Schristosmy @path = qw(test certs);
19*66bae5e7Schristos
20*66bae5e7Schristosplan skip_all => "engines are deprecated"
21*66bae5e7Schristos    if disabled('deprecated-3.0');
22*66bae5e7Schristos
23ef5fc3feSchristosplan tests => 1;
24*66bae5e7Schristosok(run(test(["enginetest", srctop_file(@path, "root-cert.pem")])),
25*66bae5e7Schristos   "running enginetest");
26