Skip to content

Commit 0175389

Browse files
authored
Merge pull request #5894 from maxGimeno/Filter_testsuite_fixes-maxGimeno
2 parents 95a3b10 + 5c608f0 commit 0175389

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Scripts/developer_scripts/run_testsuite_from_branch_name.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ git fetch $USER_REPO
3333
git checkout $BRANCH_NAME
3434
git 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

3838
LIST_OF_PKGS=""
3939
for PKG in $(ls) ; do
@@ -63,6 +63,9 @@ cd ${CGAL_ROOT}
6363

6464
if [ -L CGAL-I ]; then rm CGAL-I; fi
6565
ln -s $PWD/CGAL-TEST/$DEST CGAL-I
66+
if [ -d CGAL-I/cmake/platforms ]; then
67+
rm -rf CGAL-I/cmake/platforms/*
68+
fi
6669
echo "starting testsuite..."
6770

6871
./autotest_cgal -c

0 commit comments

Comments
 (0)