ICU-9503 Undo removal of lenient parse data. Only English wasn't moved to CLDR.

X-SVN-Rev: 38462
This commit is contained in:
George Rhoten 2016-03-02 09:02:20 +00:00
parent d7e92f2c9a
commit 68ac3cb27a
3 changed files with 6 additions and 14 deletions
icu4j/main
shared/data
tests/collate/src/com/ibm/icu/dev/test/format

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:eb9182edec08706f02236909aaefcbf4c98d29d6415d1a8801633233c74f03fb
size 11789631
oid sha256:0133c8fe60fe4777934699e53a4f3c2a69bff7346dc2dc42a48d032c9e96f62b
size 11789535

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:cefefda6f12f61e7dcd7767a7b07b0fea3ca53c2a9b1524f3627e94cad6f3ee0
oid sha256:b565f3eb386b74eda9d590eef14fafdedfb683d7d8bcfd25a641f605d18b88f9
size 90259

View file

@ -1,6 +1,6 @@
/*
*******************************************************************************
* Copyright (C) 2009-2014, International Business Machines Corporation and *
* Copyright (C) 2009-2016, International Business Machines Corporation and *
* others. All Rights Reserved. *
*******************************************************************************
*/
@ -45,11 +45,7 @@ public class RbnfLenientScannerTest extends TestFmwk {
{ "2 thousand six HUNDRED fifty-7", "2,657" },
};
if (logKnownIssue("9503", "Lenient parse problems with English RBNF")) {
logln("Can't do lenient parse test due to http://bugs.icu-project.org/trac/ticket/9503");
} else {
doLenientParseTest(formatter, lpTestData);
}
doLenientParseTest(formatter, lpTestData);
}
/**
@ -72,11 +68,7 @@ public class RbnfLenientScannerTest extends TestFmwk {
{ "fifteen hundred and zero", "1,500" }
};
if (logKnownIssue("9503", null)) {
logln("Can't do lenient parse test due to http://bugs.icu-project.org/trac/ticket/9503");
} else {
doLenientParseTest(formatter, lpTestData);
}
doLenientParseTest(formatter, lpTestData);
}
/**