From 2ea37da0c7de1b1ede7993437c71e4daacd1627d Mon Sep 17 00:00:00 2001 From: Keith Mannthey Date: Mon, 25 Nov 2013 13:45:08 +0800 Subject: [PATCH] LU-3582 test: Add run_test to Runtests There is no run_test in this script so add one so logging in Autotest will greatly improve. It seems some of the test is dependant so I did a very minimal change to get the better logging. The patch is back-ported from the following patch: Lustre-commit: c74be05495cd5b7489fdbb100cd7b6d15db32053 Lustre-change: http://review.whamcloud.com/7014 Signed-off-by: Keith Mannthey Change-Id: I96d7fe464d81094842dc5939519d74f7168d96b1 Signed-off-by: Jian Yu Reviewed-on: http://review.whamcloud.com/8384 Tested-by: Jenkins Tested-by: Maloo Reviewed-by: Andreas Dilger Reviewed-by: Emoly Liu Reviewed-by: Wei Liu --- lustre/tests/runtests | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lustre/tests/runtests b/lustre/tests/runtests index f6b3cd2..c49eba7 100755 --- a/lustre/tests/runtests +++ b/lustre/tests/runtests @@ -24,7 +24,7 @@ RUNTESTS_SRC=${RUNTESTS_SRC:-"/etc /bin"} [ "$MKDIRMANY" ] || MKDIRMANY="createmany -d" check_and_setup_lustre - +test_1() { OSCTMP=`echo $MOUNT | tr "/" "."` USED=`df | awk "/$OSCTMP/ { print \\$3 }" | tail -n 1` USED=`expr $USED + 16` # Some space for the status file @@ -126,6 +126,8 @@ NOWUSED=`df | awk "/$OSCTMP/ { print \\$3 }" | tail -n 1` if [ `expr $NOWUSED - $USED` -gt 1024 ]; then echo "Space not all freed: now ${NOWUSED}kB, was ${USED}kB." 1>&2 fi +} +run_test 1 "All Runtests" complete $SECONDS rm -f $FILES -- 1.8.3.1