Pārlūkot izejas kodu

Merge pull request #39698 from thaJeztah/fix_windows_integration_pwd

make.ps1: Run-IntegrationTests(): set working directory for test suite
Kirill Kolyshkin 6 gadi atpakaļ
vecāks
revīzija
838843bbad
1 mainītis faili ar 1 papildinājumiem un 0 dzēšanām
  1. 1 0
      hack/make.ps1

+ 1 - 0
hack/make.ps1

@@ -340,6 +340,7 @@ Function Run-IntegrationTests() {
         Write-Host "Running $($PWD.Path)"
         $pinfo = New-Object System.Diagnostics.ProcessStartInfo
         $pinfo.FileName = "$($PWD.Path)\test.exe"
+        $pinfo.WorkingDirectory = "$($PWD.Path)"
         $pinfo.RedirectStandardError = $true
         $pinfo.UseShellExecute = $false
         $pinfo.Arguments = $env:INTEGRATION_TESTFLAGS