From f983a60a6c9ce70e1c674458e468b0d7dcd80c01 Mon Sep 17 00:00:00 2001 From: Alexander Færøy Date: Tue, 27 Nov 2018 17:36:10 +0100 Subject: 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 --- .appveyor.yml | 2 ++ 1 file changed, 2 insertions(+) (limited to '.appveyor.yml') 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" } -- cgit v1.2.3-54-g00ecf