2016-04-22 19:21:51 +08:00
|
|
|
#! /usr/bin/env perl
|
2020-04-23 20:55:52 +08:00
|
|
|
# Copyright 2015-2020 The OpenSSL Project Authors. All Rights Reserved.
|
2016-04-22 19:21:51 +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
|
|
|
|
|
2017-06-28 00:04:37 +08:00
|
|
|
use strict;
|
|
|
|
use warnings;
|
|
|
|
use OpenSSL::Test;
|
2015-04-18 02:04:19 +08:00
|
|
|
|
2018-03-11 02:06:43 +08:00
|
|
|
plan tests => 2;
|
2017-06-28 00:04:37 +08:00
|
|
|
setup("test_rand");
|
2015-04-18 02:04:19 +08:00
|
|
|
|
2017-06-28 00:04:37 +08:00
|
|
|
ok(run(test(["drbgtest"])));
|
2018-03-11 02:06:43 +08:00
|
|
|
ok(run(test(["drbg_cavs_test"])));
|
2020-02-22 08:34:20 +08:00
|
|
|
# commented out due to long running time
|
|
|
|
#ok(run(test(["drbg_extra_test"])));
|