summaryrefslogtreecommitdiff
path: root/Source/ctest.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2018-01-23 08:55:58 -0500
committerBrad King <brad.king@kitware.com>2018-01-23 09:29:07 -0500
commit98628de812c4724fb2da199abb5fe08eeb5a1a64 (patch)
tree66e7c15536fede8e4b4f266147d19754e48311b8 /Source/ctest.cxx
parent3b588ac58256540e6dc974cf2d1a122c95f19171 (diff)
downloadcmake-98628de812c4724fb2da199abb5fe08eeb5a1a64.tar.gz
Extend libuv file translate mode workaround to all executables
Since libuv commit v1.14.1~7 (win: add uv__once_init() calls, 2017-08-30) the libuv initialization of the file translate mode may take place even if we do not use a uv loop. This change was included in our libuv update commit f4a26c748b (libuv 2018-01-19). Therefore use of libuv even through `cmSystemTools::GetRealPath` in any executable may trigger its file translate mode setting. Factor out the logic added to `cmake.exe` by commit v3.9.0-rc4~10^2 (cmake: Fix default file translate mode when using libuv, 2017-06-13) and re-use to initialize all executables. Issue: #16962
Diffstat (limited to 'Source/ctest.cxx')
-rw-r--r--Source/ctest.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/ctest.cxx b/Source/ctest.cxx
index ad5fec0af8..0a6d1d25dd 100644
--- a/Source/ctest.cxx
+++ b/Source/ctest.cxx
@@ -137,6 +137,7 @@ int main(int argc, char const* const* argv)
cmSystemTools::DoNotInheritStdPipes();
cmSystemTools::EnableMSVCDebugHook();
+ cmSystemTools::InitializeLibUV();
cmSystemTools::FindCMakeResources(argv[0]);
// Dispatch 'ctest --launch' mode directly.