diff options
author | cvs2svn <cvs2svn@FreeBSD.org> | 2003-01-28 21:43:23 +0000 |
---|---|---|
committer | cvs2svn <cvs2svn@FreeBSD.org> | 2003-01-28 21:43:23 +0000 |
commit | ed5cdaec6da5fa91e35f08de5092f7acdf3d7133 (patch) | |
tree | 825eb9fb7c10c97428e3b4a21f7fa39a1d84adbd /crypto/openssl/perl/t | |
parent | 5c87c606cde085944937b11c908b8c1232fef219 (diff) |
Diffstat (limited to 'crypto/openssl/perl/t')
-rw-r--r-- | crypto/openssl/perl/t/01-use.t | 13 | ||||
-rw-r--r-- | crypto/openssl/perl/t/02-version.t | 10 | ||||
-rw-r--r-- | crypto/openssl/perl/t/03-bio.t | 16 |
3 files changed, 0 insertions, 39 deletions
diff --git a/crypto/openssl/perl/t/01-use.t b/crypto/openssl/perl/t/01-use.t deleted file mode 100644 index e24fd1f5045b..000000000000 --- a/crypto/openssl/perl/t/01-use.t +++ /dev/null @@ -1,13 +0,0 @@ - -BEGIN { - $| = 1; - print "1..1\n"; -} -END { - print "not ok 1\n" unless $loaded; -} -use OpenSSL; -$loaded = 1; -print "ok 1\n"; - - diff --git a/crypto/openssl/perl/t/02-version.t b/crypto/openssl/perl/t/02-version.t deleted file mode 100644 index 8b5f6a0c9772..000000000000 --- a/crypto/openssl/perl/t/02-version.t +++ /dev/null @@ -1,10 +0,0 @@ - -print "1..1\n"; -use OpenSSL; -if ($OpenSSL::VERSION ne '') { - print "ok 1\n"; -} -else { - print "not ok 1\n"; -} - diff --git a/crypto/openssl/perl/t/03-bio.t b/crypto/openssl/perl/t/03-bio.t deleted file mode 100644 index e3ed7ed842e5..000000000000 --- a/crypto/openssl/perl/t/03-bio.t +++ /dev/null @@ -1,16 +0,0 @@ - -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"; - |