From a6942ba7642e29279e409cf112f1f8c5f2fe4af0 Mon Sep 17 00:00:00 2001 From: Greg Anderson Date: Sat, 24 Oct 2015 16:12:35 -0700 Subject: [PATCH] Add a couple of messages to runtests. --- runtests.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/runtests.sh b/runtests.sh index 300bf32..9414c73 100755 --- a/runtests.sh +++ b/runtests.sh @@ -8,6 +8,10 @@ # Any parameters that may be passed to phpunit may also be used # with runtests.sh. +echo +echo "Begin tests." +echo + # We use the Drush that is on the global $PATH. See .travis.yml DRUSH_PATH="$(which drush)" SYM="`readlink "$DRUSH_PATH"`" @@ -31,7 +35,9 @@ fi # Run all tests if there were no arguments if [ $# = 0 ] ; then + echo UNISH_NO_TIMEOUTS=y $PHPUNIT --bootstrap="$DRUSH_DIR/tests/bootstrap.inc" tests UNISH_NO_TIMEOUTS=y $PHPUNIT --bootstrap="$DRUSH_DIR/tests/bootstrap.inc" tests else + echo UNISH_NO_TIMEOUTS=y $PHPUNIT --bootstrap="$DRUSH_DIR/tests/bootstrap.inc" "$@" UNISH_NO_TIMEOUTS=y $PHPUNIT --bootstrap="$DRUSH_DIR/tests/bootstrap.inc" "$@" fi