mirror of
https://github.com/microsoft/WSL.git
synced 2026-04-22 21:34:24 -05:00
56 lines
2.0 KiB
PowerShell
56 lines
2.0 KiB
PowerShell
#Requires -RunAsAdministrator
|
|
|
|
<#
|
|
.SYNOPSIS
|
|
Runs all WSL tests; optionally sets-up a WSL distribution and environment prior to running the tests.
|
|
.PARAMETER Version
|
|
The version of WSL to run the tests in. Defaults to "2".
|
|
.PARAMETER SetupScript
|
|
Path to a setup script to be run prior to running the tests. Defaults to ".\test-setup.ps1".
|
|
.PARAMETER DistroPath
|
|
Path to a .tar/.tar.gz file of the distro to be imported to run the tests with. Defaults to ".\test_distro.tar.gz".
|
|
.PARAMETER TestDataPath
|
|
Path to test data folder. Defaults to ".\test_data".
|
|
.PARAMETER Package
|
|
Path to the wsl.msix package to install. Defaults to ".\wsl.msix".
|
|
.PARAMETER UnitTestsPath
|
|
Path to the linux/unit_tests directory to copy and install the unit tests.
|
|
.PARAMETER PullRequest
|
|
Switch for whether or not this test pass is being run as a part of a pull request; skips certain tests if present. Defaults to $false.
|
|
.PARAMETER TestDllPath
|
|
Path to the TAEF test DLL. Defaults to ".\wsltests.dll".
|
|
.PARAMETER Fast
|
|
Handy flag to skip package and distro installation to make tests run faster during development.
|
|
.PARAMETER TeArgs
|
|
Additional arguments for TE.exe.
|
|
#>
|
|
|
|
[cmdletbinding(PositionalBinding = $false)]
|
|
param (
|
|
[string]$Version = 2,
|
|
[string]$SetupScript = ".\test-setup.ps1",
|
|
[string]$DistroPath = ".\test_distro.tar.gz",
|
|
[string]$TestDataPath = ".\test_data",
|
|
[string]$Package = ".\installer.msix",
|
|
[string]$UnitTestsPath = ".\unit_tests",
|
|
[switch]$PullRequest = $false,
|
|
[string]$TestDllPath = ".\wsltests.dll",
|
|
[switch]$Fast = $false,
|
|
[parameter(ValueFromRemainingArguments = $true)]
|
|
[string[]]$TeArgs
|
|
)
|
|
|
|
Set-StrictMode -Version Latest
|
|
$ErrorActionPreference = "Stop"
|
|
|
|
if ($Fast)
|
|
{
|
|
$SetupScript = $null
|
|
}
|
|
|
|
te.exe $TestDllPath /p:SetupScript=$SetupScript /p:Version=$Version /p:DistroPath=$DistroPath /p:TestDataPath=$TestDataPath /p:Package=$Package /p:UnitTestsPath=$UnitTestsPath /p:PullRequest=$PullRequest /p:AllowUnsigned=1 @TeArgs
|
|
|
|
if (!$?)
|
|
{
|
|
exit 1
|
|
} |