aboutsummaryrefslogblamecommitdiffstatshomepage
path: root/.ci/run_foo.ps1
blob: 578911f9a191e2cb0f99b2924664fcfe3149c978 (plain) (tree)























                                                      
param(
    [Parameter(Mandatory=$true)]
    [string] $FooPath
)

$foo_path = [System.IO.Path]::GetFullPath($FooPath)
if ($IsWindows) {
    $foo_path += '.exe'
}

$relative = 'test.txt'
$absolute = Join-Path (Get-Location).Path $relative

$actual = & $foo_path $relative
echo 'Actual output:'
echo $actual

$expected = $foo_path,$absolute
echo 'Expected output:'
echo $expected

if (Compare-Object $actual $expected -CaseSensitive) {
    throw 'Unexpected output'
}