diff options
Diffstat (limited to 'debian/perl-framework/t/htdocs/modules/cgi/nph-stderr.pl.PL')
-rw-r--r-- | debian/perl-framework/t/htdocs/modules/cgi/nph-stderr.pl.PL | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/debian/perl-framework/t/htdocs/modules/cgi/nph-stderr.pl.PL b/debian/perl-framework/t/htdocs/modules/cgi/nph-stderr.pl.PL new file mode 100644 index 0000000..601adf9 --- /dev/null +++ b/debian/perl-framework/t/htdocs/modules/cgi/nph-stderr.pl.PL @@ -0,0 +1,12 @@ +# produces lots of stderr output + +print "HTTP/1.0 200 OK\r\n"; + +print STDERR 'x'x8192; +print "Content-Type: text/plain\r\n\r\n"; + +print "this is nph-stdout"; + +close STDOUT; + +print STDERR "this is nph-stderr"; |