mirror of
https://github.com/openssl/openssl.git
synced 2024-12-09 05:51:54 +08:00
13 lines
185 B
Perl
13 lines
185 B
Perl
|
#! /usr/bin/perl
|
||
|
|
||
|
use strict;
|
||
|
use warnings;
|
||
|
|
||
|
use Test::More;
|
||
|
use OpenSSL::Test;
|
||
|
|
||
|
setup("test_heartbeat");
|
||
|
|
||
|
plan tests => 1;
|
||
|
ok(run(test(["heartbeat_test"])), "running heartbeat_test");
|