diff --git a/test/cgidir/test-crlf.cgi b/test/cgidir/test-crlf.cgi new file mode 100755 index 00000000..320344df --- /dev/null +++ b/test/cgidir/test-crlf.cgi @@ -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" + diff --git a/test/cgidir/test-lf.cgi b/test/cgidir/test-lf.cgi new file mode 100755 index 00000000..b15c4a1c --- /dev/null +++ b/test/cgidir/test-lf.cgi @@ -0,0 +1,5 @@ +#!/bin/sh +printf "Content-Type: text/plain\n" +printf "\n" +printf "This should be the first line\n" +