summaryrefslogtreecommitdiff
path: root/crypto/openssl/perl/t
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2003-03-20 20:44:12 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2003-03-20 20:44:12 +0000
commit70ddb0df17347953e22f1204be767a6a80e22865 (patch)
tree2b8e0e7365b31380f841b32d3042d4ed769d9b0c /crypto/openssl/perl/t
parent5b877a2d56a3b37c8b2e8cedf0532a8fb82e3c70 (diff)
Diffstat (limited to 'crypto/openssl/perl/t')
-rw-r--r--crypto/openssl/perl/t/01-use.t13
-rw-r--r--crypto/openssl/perl/t/02-version.t10
-rw-r--r--crypto/openssl/perl/t/03-bio.t16
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 e24fd1f5045bf..0000000000000
--- 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 8b5f6a0c97723..0000000000000
--- 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 e3ed7ed842e5f..0000000000000
--- 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";
-