[openssl] master update

Dr. Paul Dale pauli at openssl.org
Tue Feb 19 08:37:59 UTC 2019


The branch master has been updated
       via  4e1819a9a6abe43a8923c227c85b287f87224bad (commit)
      from  4460ad90af0338abe31286f29b36baf2e41abf19 (commit)


- Log -----------------------------------------------------------------
commit 4e1819a9a6abe43a8923c227c85b287f87224bad
Author: Pauli <paul.dale at oracle.com>
Date:   Tue Feb 19 11:48:51 2019 +1000

    Fix a test ordering issue.
    
    A randomised order causes failure due to unintentional dependencies between
    two of the test cases.
    
    [extended tests]
    
    Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre at ncp-e.com>
    (Merged from https://github.com/openssl/openssl/pull/8279)

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

Summary of changes:
 test/property_test.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/property_test.c b/test/property_test.c
index ac1a8f7..722de05 100644
--- a/test/property_test.c
+++ b/test/property_test.c
@@ -45,7 +45,7 @@ static int test_property_string(void)
         && TEST_int_ne(i, j)
         && TEST_int_eq(ossl_property_value("yes", 1), j)
         && TEST_int_eq(ossl_property_value("no", 1), i)
-        && TEST_int_ne(i = ossl_property_value("green", 1), 0)
+        && TEST_int_ne(i = ossl_property_value("illuminati", 1), 0)
         && TEST_int_eq(j = ossl_property_value("fnord", 1), i + 1)
         && TEST_int_eq(ossl_property_value("fnord", 1), j)
         /* Check name and values are distinct */


More information about the openssl-commits mailing list