diff --git a/.azure/scripts/run-executable.ps1 b/.azure/scripts/run-executable.ps1 index 6c754377a..f3b327aa9 100644 --- a/.azure/scripts/run-executable.ps1 +++ b/.azure/scripts/run-executable.ps1 @@ -98,7 +98,7 @@ $FailXmlText = @" - + @@ -110,7 +110,7 @@ $SuccessXmlText = @" - + "@ @@ -175,7 +175,7 @@ function PrintDumpCallStack($DumpFile) { $env:_NT_SYMBOL_PATH = Split-Path $Path try { if ($env:BUILD_BUILDNUMBER -ne $null) { - $env:PATH += ";c:\Program Files (x86)\Windows Kits\10\Debuggers\x64" + $env:PATH += ";c:\Program Files (x86)\Windows Kits\10\Debuggers\x64" } $Output = cdb.exe -z $File -c "kn;q" | Join-String -Separator "`n" $Output = ($Output | Select-String -Pattern " # Child-SP(?s).*quit:").Matches[0].Groups[0].Value diff --git a/scripts/interop.ps1 b/scripts/interop.ps1 index 4d78869db..3c76654d2 100644 --- a/scripts/interop.ps1 +++ b/scripts/interop.ps1 @@ -39,6 +39,9 @@ This script runs quicinterop locally. .PARAMETER Test A particular test case to run. +.PARAMETER Version + The initial version to use for the connection. + .PARAMETER Serial Runs the test cases serially. @@ -85,6 +88,9 @@ param ( [Parameter(Mandatory = $false)] [string]$Test = "", + [Parameter(Mandatory = $false)] + [string]$Version = "", + [Parameter(Mandatory = $false)] [switch]$Serial = $false ) @@ -151,6 +157,9 @@ if ($Port -ne "") { if ($Test -ne "") { $ExtraArgs += " -test:$Test" } +if ($Version -ne "") { + $ExtraArgs += " -version:$Version" +} if ($Serial) { $ExtraArgs += " -serial" }