Remove test that breaks on AIX.
authorShane Lontis <shane.lontis@oracle.com>
Wed, 4 Nov 2020 02:48:03 +0000 (12:48 +1000)
committerShane Lontis <shane.lontis@oracle.com>
Sun, 8 Nov 2020 21:56:56 +0000 (07:56 +1000)
The offending test checks that fopen("anydir/") fails. This looks fairly platform
specific. For the test involved this creates a file called
"anydir" on an AIX test machine.

This change was introduced on (Sept 24)
https://github.com/openssl/openssl/commit/29844ea5b3d2b7240d99b043a0d82cb177f0762d

Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/13309)

test/recipes/25-test_x509.t

index 896c5a1e6a8b0e8fb34e79df465b55421a317b66..0e3b83aedf09a3aee5dee09766f82eed86c2db63 100644 (file)
@@ -16,7 +16,7 @@ use OpenSSL::Test qw/:DEFAULT srctop_file/;
 
 setup("test_x509");
 
 
 setup("test_x509");
 
-plan tests => 15;
+plan tests => 14;
 
 require_ok(srctop_file('test','recipes','tconversion.pl'));
 
 
 require_ok(srctop_file('test','recipes','tconversion.pl'));
 
@@ -124,8 +124,6 @@ sub test_errors { # actually tests diagnostics of OSSL_STORE
     return $res && $found;
 }
 
     return $res && $found;
 }
 
-ok(test_errors("Can't open any-dir/", "root-cert.pem", '-out', 'any-dir/'),
-   "load root-cert errors");
 ok(test_errors("RC2-40-CBC", "v3-certs-RC2.p12", '-passin', 'pass:v3-certs'),
    "load v3-certs-RC2 no asn1 errors");
 SKIP: {
 ok(test_errors("RC2-40-CBC", "v3-certs-RC2.p12", '-passin', 'pass:v3-certs'),
    "load v3-certs-RC2 no asn1 errors");
 SKIP: {