Exit if we can't load the test-common.sh library.

svn path=/trunk/; revision=49625
This commit is contained in:
Jeff Morriss 2013-05-30 00:35:46 +00:00
parent dffc4fefc6
commit 4509929f2a
3 changed files with 3 additions and 3 deletions

View File

@ -10,7 +10,7 @@
# repeatedly until an error is found.
TEST_TYPE="fuzz"
. `dirname $0`/test-common.sh
. `dirname $0`/test-common.sh || exit 1
# Directory containing binaries. Default current directory.
BIN_DIR=.

View File

@ -9,7 +9,7 @@
# The files are processed repeatedly until an error is found.
TEST_TYPE="randpkt"
. `dirname $0`/test-common.sh
. `dirname $0`/test-common.sh || exit 1
# Trigger an abort if a dissector finds a bug.
# Uncomment to disable

View File

@ -36,7 +36,7 @@ then
fi
TEST_TYPE="manual"
. `dirname $0`/test-common.sh
. `dirname $0`/test-common.sh || exit 1
# set some limits to the child processes, e.g. stop it if it's running longer then MAX_CPU_TIME seconds
# (ulimit is not supported well on cygwin and probably other platforms, e.g. cygwin shows some warnings)