From 145ccf89437b70bba1b34c74b64c9f85db0ae315 Mon Sep 17 00:00:00 2001 From: Martin Kroeker Date: Thu, 7 Apr 2022 14:24:19 +0200 Subject: [PATCH] Prevent powershell from adding a BOM to test input (#3595) * Prevent addition of a BOM to test input (which would distort the names of output files) --- test/CMakeLists.txt | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 5214d9cab..786fdd735 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -28,13 +28,10 @@ endforeach() # $1 exec, $2 input, $3 output_result if(WIN32) FILE(WRITE ${CMAKE_CURRENT_BINARY_DIR}/test_helper.ps1 +"[Console]::InputEncoding = New-Object Text.UTF8Encoding $false\n" "if (Test-Path $args[2]) { Remove-Item -Force $args[2] } \n" "$ErrorActionPreference = \"Stop\"\n" -"If ((Get-Content $args[1] | & file - | %{$_ -match \"BOM\"}) -contains $true) {\n" -"echo 'Skipped due to wrong input encoding'\n" -"exit 0\n" -"}\n" -"Get-Content $args[1] | & $args[0]\n" +"Get-Content $args[1] | & $args[0]\n" "If ((Get-Content $args[2] | %{$_ -match \"FATAL\"}) -contains $true) {\n" "echo Error\n" "exit 1\n"