1
0
Эх сурвалжийг харах

Tests: fix RunCMake.Make test when run on systems with non-english locale

Set `LANG=C` in the environment so the output of `make` is predictable.

Fixes: #19689
Rolf Eike Beer 5 жил өмнө
parent
commit
95dbcf0598

+ 3 - 0
Tests/RunCMake/Make/RunCMakeTest.cmake

@@ -26,10 +26,13 @@ function(run_VerboseBuild)
   endif()
   endif()
   run_cmake_command(VerboseBuild-build ${CMAKE_COMMAND} --build . -v --clean-first)
   run_cmake_command(VerboseBuild-build ${CMAKE_COMMAND} --build . -v --clean-first)
   unset(RunCMake-stdout-file)
   unset(RunCMake-stdout-file)
+  set(_backup_lang "$ENV{LANG}")
   if(MAKE_IS_GNU)
   if(MAKE_IS_GNU)
     set(RunCMake-stdout-file VerboseBuild-nowork-gnu-stdout.txt)
     set(RunCMake-stdout-file VerboseBuild-nowork-gnu-stdout.txt)
+    set(ENV{LANG} "C")
   endif()
   endif()
   run_cmake_command(VerboseBuild-nowork ${CMAKE_COMMAND} --build . --verbose)
   run_cmake_command(VerboseBuild-nowork ${CMAKE_COMMAND} --build . --verbose)
+  set(ENV{LANG} "${_backup_lang}")
 endfunction()
 endfunction()
 run_VerboseBuild()
 run_VerboseBuild()