From: Andi Kleen <ak@xxxxxxxxxxxxxxx> Show all the problems before exiting in regress1. --- test/regress | 11 +++++++++-- 1 files changed, 9 insertions(+), 2 deletions(-) diff --git a/test/regress b/test/regress index 86dda45..9737bd5 100755 --- a/test/regress +++ b/test/regress @@ -26,6 +26,8 @@ DOUBLEPAGES=$[ $PAGES * 2 ] DOUBLEPAGES=$[ $DOUBLEPAGES - 200 ] NEEDPAGES=$[ $DOUBLEPAGES + $DOUBLEPAGES / 5 ] # 20% spare +EXIT=0 + declare -i maxnode declare -a node @@ -37,7 +39,7 @@ numactl() { failed() { echo '=======FAILED' echo "Check if machine doesn't have background jobs and try again" - exit 1 + EXIT=1 } # nstat statname node @@ -203,7 +205,12 @@ main() diff -u A B rm A B - echo '========SUCCESS' + if [ "$EXIT" = 0 ] ; then + echo '========SUCCESS' + else + echo '========FAILURE' + exit 1 + fi } # ========================================================================= -- 1.7.5.4 -- To unsubscribe from this list: send the line "unsubscribe linux-numa" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html