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;
|
2020-07-22 10:55:31 +08:00
|
|
|
use OpenSSL::Test::Utils;
|
2015-04-18 02:04:19 +08:00
|
|
|
|
2020-08-26 12:11:49 +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"])));
|
2020-08-26 12:11:49 +08:00
|
|
|
ok(run(test(["rand_status_test"])));
|