mirror of
https://github.com/openssl/openssl.git
synced 2025-03-31 20:10:45 +08:00
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 <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/12555)
This commit is contained in:
parent
b8ea8d3912
commit
adf3f83e52
@ -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"
|
||||
|
Loading…
x
Reference in New Issue
Block a user