check for non removed files

This commit is contained in:
Mark Andrews 2015-12-16 21:25:04 +11:00
parent a179cbdf65
commit 1583a214cd

View file

@ -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