diff options
author | Alexander Færøy <ahf@torproject.org> | 2018-11-27 17:36:10 +0100 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-12-17 16:39:28 -0500 |
commit | f983a60a6c9ce70e1c674458e468b0d7dcd80c01 (patch) | |
tree | 4b14aff19a2a42010872606f6f89af272a4a2157 /.appveyor.yml | |
parent | 6e508e9eb48c88f94cd9431aca6ac5743beb41d5 (diff) | |
download | tor-f983a60a6c9ce70e1c674458e468b0d7dcd80c01.tar.gz tor-f983a60a6c9ce70e1c674458e468b0d7dcd80c01.zip |
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 (limited to '.appveyor.yml')
-rw-r--r-- | .appveyor.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index 837cded43c..63d49536fa 100644 --- 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" } |