From: Matt Caswell Date: Wed, 29 Jul 2020 12:58:18 +0000 (+0100) Subject: Fix test_cmp_cli for extended tests X-Git-Tag: openssl-3.0.0-alpha6~38 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=adf3f83e5227206a011ca1bca3ef9f63709fb96e;p=thirdparty%2Fopenssl.git Fix test_cmp_cli for extended tests The test_cmp_cli was failing in the extended tests on cross-compiled mingw builds. This was due to the test not using wine when it should do. The simplest solution is to just skip the test in this case. [extended tests] Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/12555) --- diff --git a/test/recipes/81-test_cmp_cli.t b/test/recipes/81-test_cmp_cli.t index 009cdcc4d8d..51b4baf6a56 100644 --- a/test/recipes/81-test_cmp_cli.t +++ b/test/recipes/81-test_cmp_cli.t @@ -34,6 +34,8 @@ plan skip_all => "These tests are not supported in a no-ec build" plan skip_all => "Tests involving CMP server not available on Windows or VMS" if $^O =~ /^(VMS|MSWin32)$/; +plan skip_all => "Tests involving CMP server not available in cross-compile builds" + if defined $ENV{EXE_SHELL}; plan skip_all => "Tests involving CMP server require 'kill' command" unless `which kill`; plan skip_all => "Tests involving CMP server require 'lsof' command"