Sign in
flutter
/
third_party
/
openssl
/
7f558334adba23a412b169901046e3271250316b
/
.
/
perl
/
t
/
03-bio.t
blob: e3ed7ed842e5f6de31d6c0865b1762c1fe383a78 [
file
] [
log
] [
blame
]
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"
;