It was getting way too ad-hoc in there. Let's reorganize the tests so that there's a good, obvious, suggested sequence to run them in.
10 lines
126 B
Text
10 lines
126 B
Text
set +e
|
|
export SHELLTEST_QUIET=1
|
|
cd ..
|
|
( . ./shelltest.od )
|
|
RV=$?
|
|
case $RV in
|
|
40) exit 0 ;;
|
|
42) exit 0 ;;
|
|
*) exit 1 ;;
|
|
esac
|