Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
do not use # in test description
it is a comment character in TAP, so TODO messages after that are ignored by the harness
  • Loading branch information
moritz committed Mar 30, 2014
1 parent 0a763be commit 39cafaf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions S32-str/sprintf.t
Expand Up @@ -221,11 +221,11 @@ is sprintf('%d %1$x %1$o', 12), '12 c 14', 'positional argument specifier $'
is sprintf('%10s', "" x 3), ' ☃☃☃', 'multi-byte characters are counted correctly for %Ns strings';

#?rakudo.moar todo 'RT 118601'
is sprintf("%x %x", 301281685344656640, 301281685344656669), '42e5e18b84c9d00 42e5e18b84c9d1d', 'RT #118601';
is sprintf("%d", 42**20), '291733167875766667063796853374976', 'RT #118253';
is map({chars sprintf "[%18s]\n", "" x $_ }, 0..6), [21, 21, 21, 21, 21, 21, 21], 'RT #117547';
is sprintf("%x %x", 301281685344656640, 301281685344656669), '42e5e18b84c9d00 42e5e18b84c9d1d', 'RT 118601';
is sprintf("%d", 42**20), '291733167875766667063796853374976', 'RT 118253';
is map({chars sprintf "[%18s]\n", "" x $_ }, 0..6), [21, 21, 21, 21, 21, 21, 21], 'RT 117547';
#?niecza skip 'Date NYI'
is Date.new(-13_000_000_000, 1, 1), '-13000000000-01-01', 'RT #114760';
is Date.new(-13_000_000_000, 1, 1), '-13000000000-01-01', 'RT 114760';

# RT #116280
#?rakudo.jvm skip "java.lang.NumberFormatException"
Expand Down

0 comments on commit 39cafaf

Please sign in to comment.