Skip to content

Commit

Permalink
Unfudge for Rakudo.jvm.
Browse files Browse the repository at this point in the history
  • Loading branch information
colomon committed Jul 9, 2013
1 parent a3be3ac commit 839c3c3
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions S32-str/sprintf.t
Expand Up @@ -129,7 +129,6 @@ is sprintf('%03X', 42.6), '02A', '0-padded decimal %X';
is sprintf('%5.2f', 3.1415), ' 3.14', '5.2 %f';
#?rakudo.parrot skip 'sprintf %F NYI'
is sprintf('%5.2F', 3.1415), ' 3.14', '5.2 %F';
#?rakudo.jvm 8 todo "nigh"
is sprintf('%5.2g', 3.1415), ' 3.1', '5.2 %g';
is sprintf('%5.2G', 3.1415), ' 3.1', '5.2 %G';

Expand All @@ -143,7 +142,6 @@ ok sprintf('%5.2G', 3.1415e-30) ~~ /^ "3.1E-" "0"? "30" $/, '5.2 %G';
is sprintf('%20.2f', 3.1415), ' 3.14', '20.2 %f';
#?rakudo.parrot skip 'sprintf %F NYI'
is sprintf('%20.2F', 3.1415), ' 3.14', '20.2 %F';
#?rakudo.jvm 8 todo "nigh"
is sprintf('%20.2g', 3.1415), ' 3.1', '20.2 %g';
is sprintf('%20.2G', 3.1415), ' 3.1', '20.2 %G';

Expand All @@ -157,7 +155,6 @@ ok sprintf('%20.2G', 3.1415e-30) eq ' 3.1E-030' | ' 3.1E
is sprintf('%20.2f', -3.1415), ' -3.14', 'negative 20.2 %f';
#?rakudo.parrot skip 'sprintf %F NYI'
is sprintf('%20.2F', -3.1415), ' -3.14', 'negative 20.2 %F';
#?rakudo.jvm 8 todo "nigh"
is sprintf('%20.2g', -3.1415), ' -3.1', 'negative 20.2 %g';
is sprintf('%20.2G', -3.1415), ' -3.1', 'negative 20.2 %G';

Expand All @@ -171,7 +168,6 @@ ok sprintf('%20.2G', -3.1415e-30) eq ' -3.1E-030' | ' -3.1E
is sprintf('%020.2f', 3.1415), '00000000000000003.14', '020.2 %f';
#?rakudo.parrot skip 'sprintf %F NYI'
is sprintf('%020.2F', 3.1415), '00000000000000003.14', '020.2 %F';
#?rakudo.jvm 8 todo "nigh"
is sprintf('%020.2g', 3.1415), '000000000000000003.1', '020.2 %g';
is sprintf('%020.2G', 3.1415), '000000000000000003.1', '020.2 %G';

Expand All @@ -185,7 +181,6 @@ ok sprintf('%020.2G', 3.1415e-30) eq '0000000000003.1E-030' | '00000000000003.1E
is sprintf('%020.2f', -3.1415), '-0000000000000003.14', 'negative 020.2 %f';
#?rakudo.parrot skip 'sprintf %F NYI'
is sprintf('%020.2F', -3.1415), '-0000000000000003.14', 'negative 020.2 %F';
#?rakudo.jvm 8 todo "nigh"
is sprintf('%020.2g', -3.1415), '-00000000000000003.1', 'negative 020.2 %g';
is sprintf('%020.2G', -3.1415), '-00000000000000003.1', 'negative 020.2 %G';

Expand Down
Empty file modified test_summary 100644 → 100755
Empty file.

0 comments on commit 839c3c3

Please sign in to comment.