freebsd-dev/crypto/openssl/perl/t/03-bio.t
2000-01-10 06:22:05 +00:00

17 lines
181 B
Perl

BEGIN {
$| = 1;
print "1..1\n";
}
END {
print "not ok 1\n" unless $ok;
}
use OpenSSL;
my $bio = OpenSSL::BIO::new("mem") || die;
undef $bio;
$ok = 1;
print "ok 1\n";