diff options
| author | ras0219 <533828+ras0219@users.noreply.github.com> | 2020-12-07 18:17:19 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-07 18:17:19 -0800 |
| commit | dd4421808cc9131a0a68e71d9c41b0b6b9ce06d3 (patch) | |
| tree | dea4a8afd788b8e21d3c2a5a02b2a62ba54bb08a /scripts/azure-pipelines | |
| parent | ced334b24dfc992ab0d1fd3af803dbf20481be25 (diff) | |
| download | vcpkg-dd4421808cc9131a0a68e71d9c41b0b6b9ce06d3.tar.gz vcpkg-dd4421808cc9131a0a68e71d9c41b0b6b9ce06d3.zip | |
[vcpkg_fixup_pkgconfig] Handle spaces in path, do not validate individual libraries (#13126)
Diffstat (limited to 'scripts/azure-pipelines')
| -rw-r--r-- | scripts/azure-pipelines/end-to-end-tests.ps1 | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/azure-pipelines/end-to-end-tests.ps1 b/scripts/azure-pipelines/end-to-end-tests.ps1 index 3b6fe5aaa..99e56ce45 100644 --- a/scripts/azure-pipelines/end-to-end-tests.ps1 +++ b/scripts/azure-pipelines/end-to-end-tests.ps1 @@ -91,6 +91,18 @@ function Run-Vcpkg { ./vcpkg @testArgs
}
+##### Test spaces in the path
+Refresh-TestRoot
+$CurrentTest = "zlib with spaces in path"
+Write-Host $CurrentTest
+./vcpkg install zlib "--triplet" $Triplet `
+ "--no-binarycaching" `
+ "--x-buildtrees-root=$TestingRoot/build Trees" `
+ "--x-install-root=$TestingRoot/instalL ed" `
+ "--x-packages-root=$TestingRoot/packaG es"
+Throw-IfFailed
+
+##### Binary caching tests
if (-not $IsLinux -and -not $IsMacOS) {
Refresh-TestRoot
# Test msbuild props and targets
|
