summaryrefslogtreecommitdiff
path: root/tests/docroot/www/get-post-len.pl
diff options
context:
space:
mode:
Diffstat (limited to 'tests/docroot/www/get-post-len.pl')
-rw-r--r--tests/docroot/www/get-post-len.pl15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/docroot/www/get-post-len.pl b/tests/docroot/www/get-post-len.pl
deleted file mode 100644
index bac8bbf8..00000000
--- a/tests/docroot/www/get-post-len.pl
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/usr/bin/perl
-
-
-print "Content-Type: text/plain\r\n\r\n";
-
-if ($ENV{"REQUEST_METHOD"} eq "POST") {
- my $l = 0;
- while(<>) {
- $l += length($_);
- }
- print $l;
-} else {
- print "0";
-}
-