From faafc6453f7a1773b9fb94563a2ae86d94fd311a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Tue, 11 Jul 2023 18:15:34 +0200 Subject: [PATCH] add a missing check --- Scripts/developer_scripts/run_testsuite_with_ctest | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Scripts/developer_scripts/run_testsuite_with_ctest b/Scripts/developer_scripts/run_testsuite_with_ctest index 723b3938d2c..43674242e98 100644 --- a/Scripts/developer_scripts/run_testsuite_with_ctest +++ b/Scripts/developer_scripts/run_testsuite_with_ctest @@ -414,6 +414,13 @@ run_test_on_host() fi for PLATFORM in ${PLATFORMS}; do + + if [ "${CGAL_RELEASE_ID}" \> "CGAL-6.0" ]; then + if [ "${PLATFORM}" = "MSVC2015-Release-64bits" ]; then + continue + fi + fi + run_test_on_platform "${PLATFORM}" collect_demos_binaries "${PLATFORM}" publish_results "${PLATFORM}"