Document the non zero exit code case.

This commit is contained in:
David Jones 2014-03-17 14:00:30 +00:00
parent b95b010c0d
commit 0587a615f3

View File

@ -1,4 +1,11 @@
#!/bin/sh
# Borrow this test which has a failure in it (3 in fact), and
# run it using urchin:
../../urchin "../Counts should be kept of successes and failures./.test" > /dev/null
# Now invert the result, we want _this_ test to fail if the exit
# code was 0.
case $? in
0) exit 8;;
*) exit 0;;