summaryrefslogtreecommitdiff
path: root/tests/docroot/www/send404.pl
diff options
context:
space:
mode:
authorMarcus Rückert <darix@opensu.se>2007-08-13 14:34:50 +0000
committerMarcus Rückert <darix@opensu.se>2007-08-13 14:34:50 +0000
commit2573648c4b4bd23dd23819dee62eb9849dea73e3 (patch)
tree7d1f77307196c4c469e796f720319329c1f037f7 /tests/docroot/www/send404.pl
parentdac6d449dd48d74ec5371ca6c78a5f040c7958d8 (diff)
downloadlighttpd-git-2573648c4b4bd23dd23819dee62eb9849dea73e3.tar.gz
- added testcase for #948
git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.4.x@1901 152afb58-edef-0310-8abb-c4023f1b3aa9
Diffstat (limited to 'tests/docroot/www/send404.pl')
-rwxr-xr-xtests/docroot/www/send404.pl5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/docroot/www/send404.pl b/tests/docroot/www/send404.pl
new file mode 100755
index 00000000..a92dfa6c
--- /dev/null
+++ b/tests/docroot/www/send404.pl
@@ -0,0 +1,5 @@
+#!/usr/bin/perl
+use CGI qw/:standard/;
+print header ( -status => 404
+ -type => 'text/plain' );
+print ("send404\n");