diff options
Diffstat (limited to 'crypto/openssl/perl/t/03-bio.t')
-rw-r--r-- | crypto/openssl/perl/t/03-bio.t | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/crypto/openssl/perl/t/03-bio.t b/crypto/openssl/perl/t/03-bio.t new file mode 100644 index 0000000..e3ed7ed --- /dev/null +++ b/crypto/openssl/perl/t/03-bio.t @@ -0,0 +1,16 @@ + +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"; + |