mirror of https://github.com/CGAL/cgal
Make run_testsuite_with_cmake and run_testsuite ignore icons/ and
resources/ (which are not directories that contain code).
This commit is contained in:
parent
54a1337d49
commit
7b885c20d1
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue