History log of /dalvik/libcore/luni/src/test/java/java/util/FormatterTest.java
Revision Date Author Comments
6363e0f00cc7960545161fca809733f5ad64e8d3 01-Feb-2010 Elliott Hughes <enh@google.com> Fix varargs warnings in libcore tests.
601fa0418e1f0835fd5ad7b06d3a6d2d631d667d 29-Jan-2010 Elliott Hughes <enh@google.com> Fix a Formatter test that I checked in broken.

There's really no excuse for this with DalvikRunner, but I copy and pasted this
from a mail, and didn't run it until after it had been committed. I mean, who
puts untested code in a mail? ;-)
c86892dbd84eb2194b7211f184faead8c73b568b 27-Jan-2010 Elliott Hughes <enh@google.com> Add a java.util.Formatter test suggested by egnor months ago.

...and add comments to existing tests.
e2036b3a340e0d687d9bbdb500658ef4585545e2 15-Jan-2010 Elliott Hughes <enh@google.com> Fix Formatter's behavior with %% and %n.

Yesterday's fix to the behavior with genuine null arguments didn't take into
account that we have format specifiers that don't take arguments. Fix the fix,
and add an explicit test.
35df53aad66e7998cf0d7ca02e8c7a902d625fc6 15-Jan-2010 Ficus Kirkpatrick <ficus@android.com> Fix a NPE in java.util.Formatter.

A recent optimization to simple '%s' and '%d' formats was
failing to format null as "null". Also add a test.
8cdf9790e869778b0ed3da7f149cb7c132a0f142 08-Dec-2009 Elliott Hughes <enh@google.com> Take Locale into account in java.util.Formatter uppercase conversions.

(This is an RI incompatibility, but Sun accepts that the RI's behavior is a
bug.)

Bug: 2301938