From: Mark Andrews Date: Wed, 16 Dec 2015 10:25:04 +0000 (+1100) Subject: check for non removed files X-Git-Tag: v9.11.0a1~249 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=1583a214cd693826fc6a8f5f6734bb7ccb716eaf;p=thirdparty%2Fbind9.git check for non removed files --- diff --git a/bin/tests/system/run.sh b/bin/tests/system/run.sh index fbb2c6ddf92..b9793959ae9 100644 --- a/bin/tests/system/run.sh +++ b/bin/tests/system/run.sh @@ -120,8 +120,14 @@ else rm -f $SYSTEMTESTTOP/random.data if test -f $test/clean.sh then - ( cd $test && $SHELL clean.sh "$@" ) + ( cd $test && $SHELL clean.sh "$@" ) fi + if test -d ../../../.git + then + git status -su $test | + sed -n 's/^?? \(.*\)/I:file \1 not removed/p' + fi + fi fi