summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2021-03-05 15:58:54 (GMT)
committerBrad King <brad.king@kitware.com>2021-03-05 15:59:20 (GMT)
commit31be23dd1d61db80656159adbcf915a609b8692f (patch)
tree4ea0945893c03a76c4c58b59230863e5c8b67afd
parentfdfbf89f0c650a9886ffa91e4f3fda08080702b9 (diff)
downloadCMake-31be23dd1d61db80656159adbcf915a609b8692f.zip
CMake-31be23dd1d61db80656159adbcf915a609b8692f.tar.gz
CMake-31be23dd1d61db80656159adbcf915a609b8692f.tar.bz2
ci: Restore the Module.ExternalData test on Windows
In commit a58e3c7e8b (ci: Skip the Module.ExternalData test on Windows, 2020-10-01, v3.19.0-rc1~59^2) the test was dropped pending further investigation. We've now (hopefully) resolved the underlying problem, so we can restore the test.
-rw-r--r--.gitlab/ci/ctest_exclusions.cmake9
1 files changed, 0 insertions, 9 deletions
diff --git a/.gitlab/ci/ctest_exclusions.cmake b/.gitlab/ci/ctest_exclusions.cmake
index a68a693..b885a6a 100644
--- a/.gitlab/ci/ctest_exclusions.cmake
+++ b/.gitlab/ci/ctest_exclusions.cmake
@@ -13,15 +13,6 @@ if (CTEST_CMAKE_GENERATOR MATCHES "Visual Studio")
"^ExternalProjectUpdateSetup$")
endif ()
-if (CMAKE_HOST_WIN32)
- list(APPEND test_exclusions
- # This test often fails with an undiagnosed subtle race due to the test
- # re-using the same objects for many files. Some copy operations fail
- # to open their input with ERROR_SHARING_VIOLATION.
- "^Module.ExternalData$"
- )
-endif()
-
string(REPLACE ";" "|" test_exclusions "${test_exclusions}")
if (test_exclusions)
set(test_exclusions "(${test_exclusions})")