From: martinahansen Date: Sun, 5 Jun 2011 17:16:15 +0000 (+0000) Subject: shortened messages in test suite X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=b519aaee3bd06edaee19afe101f6f1a489927e1f;p=biopieces.git shortened messages in test suite git-svn-id: http://biopieces.googlecode.com/svn/trunk@1459 74ccb610-7750-0410-82ae-013aeee3265d --- diff --git a/bp_test/lib/test.sh b/bp_test/lib/test.sh index cabff69..54ded2a 100755 --- a/bp_test/lib/test.sh +++ b/bp_test/lib/test.sh @@ -11,7 +11,10 @@ function run { local command=$1 - echo -n "Testing $command ... " + msg="${command/$BP_DIR/\$BP_DIR}" + msg="${msg//$BP_TMP/\$BP_TMP}" + + echo -n "Testing $msg ... " eval $command > /dev/null 2>&1 }