Make correlation test script work on powershell.exe (#2834)

One of the correlation test scripts includes a line that makes a cmdlet use utf8BOM encoding, which doesn't exist in powershell.exe, only on pwsh.exe. Change this encoding to utf8 which is supported in both.
This commit is contained in:
Flor Chacón 2023-01-10 12:44:39 -08:00 коммит произвёл GitHub
Родитель a1df041e86
Коммит 130a2c8380
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -73,12 +73,12 @@ foreach ($result in (Get-ChildItem $ResultsPath -Directory))
$stats.CorrelationDisagreement += 1
}
}
Export-Csv -InputObject ($resultObj | Select-Object -Property * -ExcludeProperty @("Error", "Phase", "Action", "HRESULT") ) -Path $resultFile -Append -Encoding UTF8BOM
Export-Csv -InputObject ($resultObj | Select-Object -Property * -ExcludeProperty @("Error", "Phase", "Action", "HRESULT") ) -Path $resultFile -Append -Encoding utf8
}
else
{
$stats.Failed++
Export-Csv -InputObject $resultObj -Path $failedFile -Append -Encoding UTF8BOM
Export-Csv -InputObject $resultObj -Path $failedFile -Append -Encoding utf8
}
}