Set the exit status to reflect pass/fail. #6
@@ -0,0 +1,13 @@
|
||||
#!/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;;
|
||||
esac
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
../../urchin .test > /dev/null
|
||||
Reference in New Issue
Block a user