Add test scripts for #768: Support CGI scripts with <LF> instead of <CRLF>

This commit is contained in:
bel2125 2019-06-10 21:00:36 +02:00
parent 5475c99e94
commit 9e243206e6
2 changed files with 10 additions and 0 deletions

5
test/cgidir/test-crlf.cgi Executable file
View File

@ -0,0 +1,5 @@
#!/bin/sh
printf "Content-Type: text/plain\r\n"
printf "\r\n"
printf "This should be the first line\r\n"

5
test/cgidir/test-lf.cgi Executable file
View File

@ -0,0 +1,5 @@
#!/bin/sh
printf "Content-Type: text/plain\n"
printf "\n"
printf "This should be the first line\n"