Tests: avoid using \r\n.
diff --git a/fastcgi.t b/fastcgi.t index 556b1f6..72b8ea7 100644 --- a/fastcgi.t +++ b/fastcgi.t
@@ -71,11 +71,14 @@ my $count; while( $request->Accept() >= 0 ) { - print "Location: http://localhost:8080/redirect\r\n"; - print "Content-type: text/html\r\n"; - print "\r\n"; - print "SEE-THIS\n"; - print ++$count; + $count++; + print <<EOF; +Location: http://localhost:8080/redirect +Content-Type: text/html + +SEE-THIS +$count +EOF } FCGI::CloseSocket($socket);