mirror of
https://github.com/openssl/openssl.git
synced 2025-01-12 13:36:28 +08:00
13 lines
168 B
Perl
13 lines
168 B
Perl
|
#! /usr/bin/perl
|
||
|
|
||
|
use strict;
|
||
|
use warnings;
|
||
|
|
||
|
use Test::More;
|
||
|
use OpenSSL::Test;
|
||
|
|
||
|
setup("test_cast");
|
||
|
|
||
|
plan tests => 1;
|
||
|
ok(run(test(["casttest"])), "running casttest");
|