[openssl] openssl-3.0 update

Richard Levitte levitte at openssl.org
Tue Sep 7 08:51:20 UTC 2021


The branch openssl-3.0 has been updated
       via  7364545e0734ad25e08d7d5ad0e2c9dac85d2d0d (commit)
      from  9d3cb1b2fa4752410dd79b55c4402cee66fe3c24 (commit)


- Log -----------------------------------------------------------------
commit 7364545e0734ad25e08d7d5ad0e2c9dac85d2d0d
Author: Richard Levitte <levitte at openssl.org>
Date:   Mon Sep 6 21:49:34 2021 +0200

    Fix a few tests that fail on VMS
    
    In one spot, files aren't properly closed, so the sub-process program
    that's supposed to read them can't, because it's locked out.
    
    In another spot, srctop_file() was used where srctop_dir() should be
    used to properly format a directory specification.
    
    Reviewed-by: Tomas Mraz <tomas at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/16518)

-----------------------------------------------------------------------

Summary of changes:
 test/recipes/25-test_verify.t    | 6 ++++--
 test/recipes/30-test_defltfips.t | 2 +-
 2 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/test/recipes/25-test_verify.t b/test/recipes/25-test_verify.t
index f7a9f626ca..bcd823bcfb 100644
--- a/test/recipes/25-test_verify.t
+++ b/test/recipes/25-test_verify.t
@@ -461,7 +461,8 @@ SKIP: {
     skip "Couldn't create certplusrsa.pem", 1
         unless ( open $certplusrsa, '>', $certplusrsa_file
                  and copy($cert_file, $certplusrsa)
-                 and copy($rsa_file, $certplusrsa) );
+                 and copy($rsa_file, $certplusrsa)
+                 and close $certplusrsa );
 
     ok(run(app([ qw(openssl verify -trusted), $certplusrsa_file, $cert_file ])),
        'Mixed cert + key file test');
@@ -474,7 +475,8 @@ SKIP: {
     skip "Couldn't create rsapluscert.pem", 1
         unless ( open $rsapluscert, '>', $rsapluscert_file
                  and copy($rsa_file, $rsapluscert)
-                 and copy($cert_file, $rsapluscert) );
+                 and copy($cert_file, $rsapluscert)
+                 and close $rsapluscert );
 
     ok(run(app([ qw(openssl verify -trusted), $rsapluscert_file, $cert_file ])),
        'Mixed key + cert file test');
diff --git a/test/recipes/30-test_defltfips.t b/test/recipes/30-test_defltfips.t
index f0338bb3e0..426bd660d1 100644
--- a/test/recipes/30-test_defltfips.t
+++ b/test/recipes/30-test_defltfips.t
@@ -36,7 +36,7 @@ unless ($no_fips) {
 
     #Configured to run FIPS but the module-mac is bad
     $ENV{OPENSSL_CONF} = abs_path(srctop_file("test", "fips.cnf"));
-    $ENV{OPENSSL_CONF_INCLUDE} = srctop_file("test", "recipes", "30-test_defltfips");
+    $ENV{OPENSSL_CONF_INCLUDE} = srctop_dir("test", "recipes", "30-test_defltfips");
     ok(run(test(["defltfips_test", "badfips"])), "running defltfips_test badfips");
 
     #Test an alternative way of configuring fips (but still with bad module-mac)


More information about the openssl-commits mailing list