30-test_afalg.t 624 字节
Newer Older
R
Rich Salz 已提交
1
#! /usr/bin/env perl
M
Matt Caswell 已提交
2
# Copyright 2015-2020 The OpenSSL Project Authors. All Rights Reserved.
C
clucey 已提交
3
#
4
# Licensed under the Apache License 2.0 (the "License").  You may not use
R
Rich Salz 已提交
5 6 7
# 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

use strict;
10
use OpenSSL::Test qw/:DEFAULT/;
C
clucey 已提交
11 12 13 14 15 16
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

plan tests => 1;

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