summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-10-29 09:12:09 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-10-29 09:12:09 +0000
commit757a7d085110d09ef24c040927ac3615207ce516 (patch)
tree683d0f068b161789e833f3e207b676bdfe6edbc6 /tests
parent25613503cb234a4ee6e7a89bf1b85048e7f72d35 (diff)
downloadcurl-757a7d085110d09ef24c040927ac3615207ce516.tar.gz
removed, functionality added to runtests.pl
Diffstat (limited to 'tests')
-rw-r--r--tests/stunnel.pm11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/stunnel.pm b/tests/stunnel.pm
deleted file mode 100644
index 991fe1e1a..000000000
--- a/tests/stunnel.pm
+++ /dev/null
@@ -1,11 +0,0 @@
-sub checkstunnel {
- my @paths=("/usr/sbin", "/usr/local/sbin", "/sbin", "/usr/bin",
- "/usr/local/bin", split(":", $ENV{'PATH'}));
- for(@paths) {
- if( -x "$_/stunnel") {
- return "$_/stunnel";
- }
- }
-}
-
-1;