diff options
Diffstat (limited to 'debian/perl-framework/t/htdocs/modules/cgi/stderr3.pl.PL')
-rw-r--r-- | debian/perl-framework/t/htdocs/modules/cgi/stderr3.pl.PL | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/debian/perl-framework/t/htdocs/modules/cgi/stderr3.pl.PL b/debian/perl-framework/t/htdocs/modules/cgi/stderr3.pl.PL new file mode 100644 index 0000000..f4927b5 --- /dev/null +++ b/debian/perl-framework/t/htdocs/modules/cgi/stderr3.pl.PL @@ -0,0 +1,8 @@ +# closes stderr during script execution + +print "Content-Type: text/plain\n\n"; +print "this is more stdout"; + +close STDOUT; + +print STDERR "this is a post-stdout-closure error message"; |