switch to CGI::Compile, check exit status of non-Perl CGIs, release
[catagits/Catalyst-Controller-WrapCGI.git] / t / lib / TestCGIBin / root / cgi-bin / exit_nonzero.sh
diff --git a/t/lib/TestCGIBin/root/cgi-bin/exit_nonzero.sh b/t/lib/TestCGIBin/root/cgi-bin/exit_nonzero.sh
new file mode 100755 (executable)
index 0000000..484818f
--- /dev/null
@@ -0,0 +1,7 @@
+#!/bin/sh
+
+printf '%s\r\n' 'Content-Type: text/html; charset=ISO-8859-1'
+
+echo "Hello!"
+
+exit 1;