mirror of
https://github.com/microsoft/vscode.git
synced 2026-08-13 01:04:23 +01:00
* agentHost: run E2E suites in parallel Run the deterministic conformance and provider entrypoints concurrently while preserving serial server reuse within each suite. Integrate the parallel runner into coverage and full integration runs.\n\n(Written by Copilot)\n\nCo-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * agentHost: harden parallel E2E runner Preserve Windows argument boundaries through a PowerShell wrapper and fail coverage runs when a worker does not emit protocol-surface observations. (Written by Copilot) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * agentHost: stabilize terminal clear E2E test Wait for a marker that appears only in command output, not in the shell's echoed input, before clearing terminal state. (Written by Copilot) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --------- Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
14 lines
284 B
PowerShell
14 lines
284 B
PowerShell
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|
# Licensed under the MIT License.
|
|
|
|
param(
|
|
[Parameter(Mandatory = $true)]
|
|
[string]$TestScript,
|
|
|
|
[Parameter(ValueFromRemainingArguments = $true)]
|
|
[string[]]$TestArguments
|
|
)
|
|
|
|
& $TestScript @TestArguments
|
|
exit $LASTEXITCODE
|