From ed2e5b612d9b85b8b550a9231c3ae69be26e3d89 Mon Sep 17 00:00:00 2001 From: Shane Lontis Date: Fri, 26 Mar 2021 13:20:17 +1000 Subject: [PATCH] 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) --- test/recipes/80-test_cmp_http.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/recipes/80-test_cmp_http.t b/test/recipes/80-test_cmp_http.t index e68844ebf1..4315b1c439 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" -- 2.34.1