mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-05 09:05:36 +08:00
815396fa4e
* [vcpkg] Refactor end-to-end tests * [vcpkg] Cherry-pick x-builtin-ports-root from #14999 * [vcpkg] Move create test from unit tests to e2e Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
49 lines
1.1 KiB
PowerShell
49 lines
1.1 KiB
PowerShell
# Copyright (c) Microsoft Corporation.
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
<#
|
|
.SYNOPSIS
|
|
End-to-End tests for the vcpkg executable.
|
|
|
|
.DESCRIPTION
|
|
These tests cover the command line interface and broad functions of vcpkg, including `install`, `remove` and certain
|
|
binary caching scenarios. They use the vcpkg executable in the current directory.
|
|
|
|
.PARAMETER Triplet
|
|
The triplet to use for testing purposes.
|
|
|
|
.PARAMETER WorkingRoot
|
|
The location used as scratch space for testing.
|
|
|
|
#>
|
|
|
|
[CmdletBinding()]
|
|
Param(
|
|
[Parameter(Mandatory = $true)]
|
|
[ValidateNotNullOrEmpty()]
|
|
[string]$Triplet,
|
|
[Parameter(Mandatory = $true)]
|
|
[ValidateNotNullOrEmpty()]
|
|
[string]$WorkingRoot,
|
|
[Parameter(Mandatory = $false)]
|
|
[ValidateNotNullOrEmpty()]
|
|
[string]$Filter
|
|
)
|
|
|
|
$ErrorActionPreference = "Stop"
|
|
|
|
$AllTests = Get-ChildItem $PSScriptRoot/end-to-end-tests-dir/*.ps1
|
|
if ($Filter -ne $Null) {
|
|
$AllTests = $AllTests | ? { $_ -match $Filter }
|
|
}
|
|
$n = 1
|
|
$m = $AllTests.Count
|
|
|
|
$AllTests | % {
|
|
Write-Host "[end-to-end-tests.ps1] [$n/$m] Running suite $_"
|
|
& $_
|
|
$n += 1
|
|
}
|
|
|
|
$LASTEXITCODE = 0
|