summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCraig A. Berry <craig.a.berry@gmail.com>2015-12-08 08:19:48 +0000
committerSteve Hay <steve.m.hay@googlemail.com>2015-12-08 20:24:58 +0000
commitb9421838d84883afa03c3d25db50cf55147fe1ff (patch)
tree96ea5d6c63979a690b108af39a5af20c8556081e
parent2eeb47985792460276ac2145228b1d3ba4e47b01 (diff)
downloadperl-b9421838d84883afa03c3d25db50cf55147fe1ff.tar.gz
Fix t/op/sprintf2.t on VMS
(Passed under harness, but failed under TEST.) (cherry picked from commit 0b367b79db425c558522753a6cd4607fb16b5797)
-rw-r--r--t/op/sprintf2.t3
1 files changed, 2 insertions, 1 deletions
diff --git a/t/op/sprintf2.t b/t/op/sprintf2.t
index 03a5d33cdf..094595e084 100644
--- a/t/op/sprintf2.t
+++ b/t/op/sprintf2.t
@@ -665,7 +665,8 @@ for my $t (@hexfloat) {
# double-double long double %a special testing.
SKIP: {
- skip("uselongdouble=$Config{uselongdouble} longdblkind=$Config{longdblkind} os=$^O", 6)
+ skip("uselongdouble=" . ($Config{uselongdouble} ? 'define' : 'undef')
+ . " longdblkind=$Config{longdblkind} os=$^O", 6)
unless ($Config{uselongdouble} &&
($Config{longdblkind} == 5 ||
$Config{longdblkind} == 6)