From 20300d0129e9e551be657be4d603de7f071f5989 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Thu, 9 Apr 2009 07:49:43 +0000 Subject: source the .config so tests can signal they need to be skipped due to feature disable --- shell/hush_test/run-all | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'shell/hush_test/run-all') diff --git a/shell/hush_test/run-all b/shell/hush_test/run-all index c7989a172..57a5c253b 100755 --- a/shell/hush_test/run-all +++ b/shell/hush_test/run-all @@ -13,6 +13,9 @@ test -x hush || { echo "No ./hush - creating a link to ../../busybox" ln -s ../../busybox hush } +if test -e ../../.config ; then + eval $(sed -e '/^#/d' -e '/^$/d' -e 's:^:export :' ../../.config) +fi PATH="$PWD:$PATH" # for hush and recho/zecho/printenv export PATH @@ -47,10 +50,16 @@ do_test() name="${x%%.tests}" test -f "$name.right" || continue # echo Running test: "$x" - { + ( "$THIS_SH" "./$x" >"$name.xx" 2>&1 + test $? -eq 77 && rm -f "../$1-$x.fail" && exit 77 diff -u "$name.xx" "$name.right" >"../$1-$x.fail" && rm -f "$name.xx" "../$1-$x.fail" - } && echo "$1/$x: ok" || { echo "$1/$x: fail"; tret=1; } + ) + case $? in + 0) echo "$1/$x: ok";; + 77) echo "$1/$x: skip (feature disabled)";; + *) echo "$1/$x: fail"; tret=1;; + esac done exit ${tret} ) -- cgit v1.2.3