File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
Scripts/developer_scripts Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ git fetch $USER_REPO
3333git checkout $BRANCH_NAME
3434git reset --hard $USER_REPO /$BRANCH_NAME
3535# setup the list_test_packages
36- TMP_LIST=$( git diff --name-only cgal/$BASE_NAME ...HEAD | cut -s -d/ -f1 | sort -u | xargs -I {} ls -d {}/package_info 2> /dev/null | cut -d/ -f1 | egrep -v Installation|| true)
36+ TMP_LIST=$( git diff --name-only cgal/$BASE_NAME ...HEAD | egrep -v /doc | egrep " \.h " \| " \.cpp " | cut -s -d/ -f1 | sort -u | xargs -I {} ls -d {}/package_info 2> /dev/null | cut -d/ -f1 | egrep -v Installation|| true)
3737
3838LIST_OF_PKGS=" "
3939for PKG in $( ls) ; do
@@ -63,6 +63,9 @@ cd ${CGAL_ROOT}
6363
6464if [ -L CGAL-I ]; then rm CGAL-I; fi
6565ln -s $PWD /CGAL-TEST/$DEST CGAL-I
66+ if [ -d CGAL-I/cmake/platforms ]; then
67+ rm -rf CGAL-I/cmake/platforms/*
68+ fi
6669echo " starting testsuite..."
6770
6871./autotest_cgal -c
You can’t perform that action at this time.
0 commit comments