mirror of
https://github.com/civetweb/civetweb
synced 2025-03-28 21:13:27 +00:00
Add test scripts for #768: Support CGI scripts with <LF> instead of <CRLF>
This commit is contained in:
parent
5475c99e94
commit
9e243206e6
5
test/cgidir/test-crlf.cgi
Executable file
5
test/cgidir/test-crlf.cgi
Executable 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
5
test/cgidir/test-lf.cgi
Executable file
@ -0,0 +1,5 @@
|
||||
#!/bin/sh
|
||||
printf "Content-Type: text/plain\n"
|
||||
printf "\n"
|
||||
printf "This should be the first line\n"
|
||||
|
Loading…
x
Reference in New Issue
Block a user