This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0096dfa
)
Quadruple float BE test triggering had a typo.
author
Jarkko Hietaniemi
<jhi@iki.fi>
Wed, 20 Aug 2014 02:16:54 +0000
(22:16 -0400)
committer
Jarkko Hietaniemi
<jhi@iki.fi>
Wed, 20 Aug 2014 12:20:03 +0000
(08:20 -0400)
t/op/sprintf2.t
patch
|
blob
|
blame
|
history
diff --git
a/t/op/sprintf2.t
b/t/op/sprintf2.t
index
1833167
..
4969abf
100644
(file)
--- a/
t/op/sprintf2.t
+++ b/
t/op/sprintf2.t
@@
-133,7
+133,7
@@
if ($Config{nvsize} == 8 &&
$Config{nvsize} == 16 &&
# 9a 99 99 99 99 99 99 99 99 99 99 99 99 99 fb 3f (LE), pack F is the NV
(pack("F", 0.1) =~ /^\x9A\x99{6}/ || # LE
- pack("F", 0.1) =~ /\x99{6}x9A$/) # BE
+ pack("F", 0.1) =~ /\x99{6}
\
x9A$/) # BE
) {
@hexfloat = (
[ '%a', '0', '0x1p-1' ],