30-test_afalg.t 686 字节
Newer Older
R
Rich Salz 已提交
1 2
#! /usr/bin/env perl
# Copyright 2015-2016 The OpenSSL Project Authors. All Rights Reserved.
C
clucey 已提交
3
#
R
Rich Salz 已提交
4 5 6 7
# 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
C
clucey 已提交
8 9 10 11 12 13 14 15 16

use strict;
use OpenSSL::Test qw/:DEFAULT bldtop_dir/;
use OpenSSL::Test::Utils;

my $test_name = "test_afalg";
setup($test_name);

plan skip_all => "$test_name not supported for this build"
17
    if disabled("afalgeng");
C
clucey 已提交
18 19 20 21 22 23

plan tests => 1;

$ENV{OPENSSL_ENGINES} = bldtop_dir("engines/afalg");

ok(run(test(["afalgtest"])), "running afalgtest");