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')
-rwxr-xr-xtests/docroot/www/get-post-len.pl13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/docroot/www/get-post-len.pl b/tests/docroot/www/get-post-len.pl
deleted file mode 100755
index 82276bd6..00000000
--- a/tests/docroot/www/get-post-len.pl
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/usr/bin/env 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";
-}