From: Shane Lontis Date: Fri, 26 Mar 2021 03:20:17 +0000 (+1000) Subject: Disable cmp_http test on AIX X-Git-Tag: openssl-3.0.0-alpha14~111 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ed2e5b612d9b85b8b550a9231c3ae69be26e3d89;p=thirdparty%2Fopenssl.git Disable cmp_http test on AIX AIX has permission problems of the form: lsof: can't open /dev/mem: Permission denied lsof: can't open /dev/kmem: Permission denied Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/14692) --- diff --git a/test/recipes/80-test_cmp_http.t b/test/recipes/80-test_cmp_http.t index e68844ebf1b..4315b1c4399 100644 --- a/test/recipes/80-test_cmp_http.t +++ b/test/recipes/80-test_cmp_http.t @@ -29,8 +29,8 @@ plan skip_all => "These tests are not supported in a no-cmp build" plan skip_all => "These tests are not supported in a no-ec build" if disabled("ec"); -plan skip_all => "Tests involving local HTTP server not available on Windows or VMS" - if $^O =~ /^(VMS|MSWin32)$/; +plan skip_all => "Tests involving local HTTP server not available on Windows, AIX or VMS" + if $^O =~ /^(VMS|MSWin32|AIX)$/; plan skip_all => "Tests involving local HTTP server not available in cross-compile builds" if defined $ENV{EXE_SHELL}; plan skip_all => "Tests involving local HTTP server require 'kill' command"