Skip to content

Commit

Permalink
Merge pull request #5894 from maxGimeno/Filter_testsuite_fixes-maxGimeno
Browse files Browse the repository at this point in the history
  • Loading branch information
lrineau authored Aug 9, 2021
2 parents 95a3b10 + 5c608f0 commit 0175389
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Scripts/developer_scripts/run_testsuite_from_branch_name.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ git fetch $USER_REPO
git checkout $BRANCH_NAME
git reset --hard $USER_REPO/$BRANCH_NAME
#setup the list_test_packages
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)
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)

LIST_OF_PKGS=""
for PKG in $(ls) ; do
Expand Down Expand Up @@ -63,6 +63,9 @@ cd ${CGAL_ROOT}

if [ -L CGAL-I ]; then rm CGAL-I; fi
ln -s $PWD/CGAL-TEST/$DEST CGAL-I
if [ -d CGAL-I/cmake/platforms ]; then
rm -rf CGAL-I/cmake/platforms/*
fi
echo "starting testsuite..."

./autotest_cgal -c
Expand Down

0 comments on commit 0175389

Please sign in to comment.