Make run_testsuite_with_cmake and run_testsuite ignore icons/ and

resources/ (which are not directories that contain code).
This commit is contained in:
Laurent Rineau 2008-09-29 12:40:33 +00:00
parent 54a1337d49
commit 7b885c20d1
2 changed files with 4 additions and 2 deletions

View File

@ -173,8 +173,10 @@ run_testsuite()
done
}
[ x"$1" = x"icons" -o x"$1" = x"resources" ] && exit 0
if [ -z "$1" ] ; then
TEST_DIRECTORIES=`ls`
TEST_DIRECTORIES=`ls | egrep -v 'icons|resources'`
else
TEST_DIRECTORIES="$*"
fi

View File

@ -173,7 +173,7 @@ run_testsuite()
[ x"$1" = x"icons" -o x"$1" = x"resources" ] && exit 0
if [ -z "$1" ] ; then
TEST_DIRECTORIES=`ls`
TEST_DIRECTORIES=`ls | egrep -v 'icons|resources'`
else
TEST_DIRECTORIES="$*"
fi