2016-04-22 19:21:51 +08:00
|
|
|
#! /usr/bin/env perl
|
2020-05-15 21:09:49 +08:00
|
|
|
# Copyright 2015-2020 The OpenSSL Project Authors. All Rights Reserved.
|
2016-03-03 13:56:10 +08:00
|
|
|
#
|
2018-12-06 20:05:25 +08:00
|
|
|
# Licensed under the Apache License 2.0 (the "License"). You may not use
|
2016-04-22 19:21:51 +08:00
|
|
|
# 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
|
2016-03-03 13:56:10 +08:00
|
|
|
|
|
|
|
use strict;
|
2020-04-30 23:08:57 +08:00
|
|
|
use OpenSSL::Test qw/:DEFAULT/;
|
2016-03-03 13:56:10 +08:00
|
|
|
use OpenSSL::Test::Utils;
|
|
|
|
|
|
|
|
my $test_name = "test_afalg";
|
|
|
|
setup($test_name);
|
|
|
|
|
|
|
|
plan skip_all => "$test_name not supported for this build"
|
2016-03-14 19:21:44 +08:00
|
|
|
if disabled("afalgeng");
|
2016-03-03 13:56:10 +08:00
|
|
|
|
|
|
|
plan tests => 1;
|
|
|
|
|
|
|
|
ok(run(test(["afalgtest"])), "running afalgtest");
|