Commit e7c84542e2 for openssl.org

commit e7c84542e25bca93ec2d3e4819433b8b5e0c483f
Author: dannyward630 <djwarding888@gmail.com>
Date:   Mon Aug 3 09:54:19 2026 -0400

    test: cover quoted property case variants

    Reviewed-by: Paul Dale <paul.dale@oracle.com>
    Reviewed-by: Andrew Dinh <andrewd@openssl.org>
    MergeDate: Mon Aug 10 12:23:43 2026
    (Merged from https://github.com/openssl/openssl/pull/31597)

diff --git a/test/property_test.c b/test/property_test.c
index 3980a3457a..b2ccbce326 100644
--- a/test/property_test.c
+++ b/test/property_test.c
@@ -160,6 +160,10 @@ static const struct {
     { "sky='BLUE'", "sky='BLUE'", 1 },
     { "sky=BLUE", "sky=blue", 1 },
     { "sky='BLUE'", "sky=BLUE", -1 },
+    { "sky=BlUe", "sky=BLUE", 1 },
+    { "sky='BlUe'", "sky='BLUE'", -1 },
+    { "sky=\"BLUE\"", "sky=\"BLUE\"", 1 },
+    { "sky=BLUE", "sky=\"BLUE\"", -1 },
     { "today=monday, tomorrow=3", "today!=2", 1 },
     { "today=monday, tomorrow=3", "today!='monday'", -1 },
     { "today=monday, tomorrow=3", "tomorrow=3", 1 },