7e86df
From b52b6c4029b51818442d64c6104d26e12e140f09 Mon Sep 17 00:00:00 2001
7e86df
From: TAKAI Kousuke <62541129+t-a-k@users.noreply.github.com>
7e86df
Date: Thu, 5 Nov 2020 22:06:16 +0900
7e86df
Subject: [PATCH] t/op/inc.t, t/op/hexfp.t, t/op/sprintf2.t: Add missing d_
7e86df
 prefixes for Config variable names.
7e86df
MIME-Version: 1.0
7e86df
Content-Type: text/plain; charset=UTF-8
7e86df
Content-Transfer-Encoding: 8bit
7e86df
7e86df
Signed-off-by: Petr Písař <ppisar@redhat.com>
7e86df
---
7e86df
 t/op/hexfp.t    | 2 +-
7e86df
 t/op/inc.t      | 4 ++--
7e86df
 t/op/sprintf2.t | 4 ++--
7e86df
 3 files changed, 5 insertions(+), 5 deletions(-)
7e86df
7e86df
diff --git a/t/op/hexfp.t b/t/op/hexfp.t
7e86df
index b0c85cfdc6..5fb80d3d74 100644
7e86df
--- a/t/op/hexfp.t
7e86df
+++ b/t/op/hexfp.t
7e86df
@@ -246,7 +246,7 @@ SKIP: {
7e86df
     skip("non-80-bit-long-double", 4)
7e86df
         unless ($Config{uselongdouble} &&
7e86df
 		($Config{nvsize} == 16 || $Config{nvsize} == 12) &&
7e86df
-		($Config{long_double_style_ieee_extended}));
7e86df
+		($Config{d_long_double_style_ieee_extended}));
7e86df
     is(0x1p-1074,  4.94065645841246544e-324);
7e86df
     is(0x1p-1075,  2.47032822920623272e-324, '[perl #128919]');
7e86df
     is(0x1p-1076,  1.23516411460311636e-324);
7e86df
diff --git a/t/op/inc.t b/t/op/inc.t
7e86df
index 0bb8b85b13..3d5cc024d3 100644
7e86df
--- a/t/op/inc.t
7e86df
+++ b/t/op/inc.t
7e86df
@@ -188,10 +188,10 @@ cmp_ok($a, '==', 2147483647, "postdecrement properly downgrades from double");
7e86df
 
7e86df
 SKIP: {
7e86df
     if ($Config{uselongdouble} &&
7e86df
-        ($Config{long_double_style_ieee_doubledouble})) {
7e86df
+        ($Config{d_long_double_style_ieee_doubledouble})) {
7e86df
         skip "the double-double format is weird", 1;
7e86df
     }
7e86df
-    unless ($Config{double_style_ieee}) {
7e86df
+    unless ($Config{d_double_style_ieee}) {
7e86df
         skip "the doublekind $Config{doublekind} is not IEEE", 1;
7e86df
     }
7e86df
 
7e86df
diff --git a/t/op/sprintf2.t b/t/op/sprintf2.t
7e86df
index bbc12ccd0a..38a550c281 100644
7e86df
--- a/t/op/sprintf2.t
7e86df
+++ b/t/op/sprintf2.t
7e86df
@@ -701,7 +701,7 @@ SKIP: {
7e86df
     skip("uselongdouble=" . ($Config{uselongdouble} ? 'define' : 'undef')
7e86df
          . " longdblkind=$Config{longdblkind} os=$^O", 6)
7e86df
         unless ($Config{uselongdouble} &&
7e86df
-                ($Config{long_double_style_ieee_doubledouble})
7e86df
+                ($Config{d_long_double_style_ieee_doubledouble})
7e86df
                 # Gating on 'linux' (ppc) here is due to the differing
7e86df
                 # double-double implementations: other (also big-endian)
7e86df
                 # double-double platforms (e.g. AIX on ppc or IRIX on mips)
7e86df
@@ -892,7 +892,7 @@ SKIP: {
7e86df
     skip("non-80-bit-long-double", 17)
7e86df
         unless ($Config{uselongdouble} &&
7e86df
 		($Config{nvsize} == 16 || $Config{nvsize} == 12) &&
7e86df
-		($Config{long_double_style_ieee_extended}));
7e86df
+		($Config{d_long_double_style_ieee_extended}));
7e86df
 
7e86df
     {
7e86df
         # The last normal for this format.
7e86df
-- 
7e86df
2.25.4
7e86df