From f99b88d671f4994b0fe04ec423a2c005aca2bae3 Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Tue, 8 Sep 2015 13:07:32 +0200 Subject: [PATCH] autotest_cgal on Windows: fix pre-compiled binaries Also collect DLLs from sub-directories: in the Polyhedron demo, for example, there are generated DLLs in ./implicit_functions/ --- Scripts/developer_scripts/autotest_cgal | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Scripts/developer_scripts/autotest_cgal b/Scripts/developer_scripts/autotest_cgal index b3bac6717f9..09c6f59167c 100755 --- a/Scripts/developer_scripts/autotest_cgal +++ b/Scripts/developer_scripts/autotest_cgal @@ -668,7 +668,7 @@ echo 'COLLECTING RESULTS'; ./collect_cgal_testresults_from_cmake; if [ -n "\$COLLECT_DEMOS_BINARIES" ]; then echo 'COLLECTING DEMOS BINARIES'; - tar czvf '${CGAL_TEST_DIR}/demos_${CGAL_TESTER}_${PLATFORM}.tar.gz' *_Demo/*.exe *_Demo/*.dll + tar czvf '${CGAL_TEST_DIR}/demos_${CGAL_TESTER}_${PLATFORM}.tar.gz' *_Demo/*.exe *_Demo/*.dll *_Demo/*/*.dll fi echo 'COPYING RESULTS'; cp 'results_${CGAL_TESTER}_${PLATFORM}.tar.gz' 'results_${CGAL_TESTER}_${PLATFORM}.txt' '${CGAL_TEST_DIR}';