tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit ee3d23c05a828dc693ead2dcf083c9091d502425
parent 6bafe97bc1e9c66e5e727cdf5160341ae58b4f81
Author: Nick Mathewson <nickm@torproject.org>
Date:   Thu, 19 Mar 2020 15:28:55 -0400

Appveyor: disable crypto/openssl_version

Diffstat:
M.appveyor.yml | 2+-
Achanges/ticket33643_part2 | 3+++
2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/.appveyor.yml b/.appveyor.yml @@ -95,7 +95,7 @@ test_script: $buildpath = @("C:\msys64\${env:compiler_path}\bin") + $oldpath $env:Path = $buildpath -join ';' Set-Location "${env:build}" - Execute-Bash "VERBOSE=1 make -k -j2 check" + Execute-Bash "VERBOSE=1 TOR_SKIP_TESTCASES=crypto/openssl_version make -k -j2 check" } on_finish: diff --git a/changes/ticket33643_part2 b/changes/ticket33643_part2 @@ -0,0 +1,3 @@ + o Testing (CI): + - On appveyor, skip the crypto/openssl_version test, which is failing + because of a mismatched library installation. Fix for 33643.