commit f983a60a6c9ce70e1c674458e468b0d7dcd80c01
parent 6e508e9eb48c88f94cd9431aca6ac5743beb41d5
Author: Alexander Færøy <ahf@torproject.org>
Date: Tue, 27 Nov 2018 17:36:10 +0100
Copy (zlib1|libssp-0).dll to \src\test\ to run test-process.exe.
This patch ensures that AppVeyor copies over libssp-0.dll and zlib1.dll
to src/test/ to make sure we can run text-process.exe from our slow
tests.
See: https://bugs.torproject.org/28179
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/.appveyor.yml b/.appveyor.yml
@@ -73,6 +73,8 @@ test_script:
$buildpath = @("C:\msys64\${env:compiler_path}\bin") + $oldpath
$env:Path = $buildpath -join ';'
Set-Location "${env:build}"
+ Copy-Item "C:/msys64/${env:compiler_path}/bin/libssp-0.dll" -Destination "${env:build}/src/test"
+ Copy-Item "C:/msys64/${env:compiler_path}/bin/zlib1.dll" -Destination "${env:build}/src/test"
Execute-Bash "VERBOSE=1 make -j2 check"
}