Disable cmp_http test on AIX
authorShane Lontis <shane.lontis@oracle.com>
Fri, 26 Mar 2021 03:20:17 +0000 (13:20 +1000)
committerShane Lontis <shane.lontis@oracle.com>
Sun, 28 Mar 2021 02:38:52 +0000 (12:38 +1000)
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 <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/14692)

test/recipes/80-test_cmp_http.t

index e68844ebf1bc9d3d3f7a153481973b6553e965be..4315b1c4399dadf034159e49c311a1162127d3a7 100644 (file)
@@ -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"