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