ICU-7005 Update ICU4J version to 4.3.1
X-SVN-Rev: 26234
This commit is contained in:
parent
89557b346d
commit
d92683f797
2
.gitattributes
vendored
2
.gitattributes
vendored
@ -246,6 +246,8 @@ icu4j/tools/build/icu4j38.api.gz -text
|
||||
icu4j/tools/build/icu4j381.api.gz -text
|
||||
icu4j/tools/build/icu4j400.api.gz -text
|
||||
icu4j/tools/build/icu4j401.api.gz -text
|
||||
icu4j/tools/build/icu4j42.api.gz -text
|
||||
icu4j/tools/build/icu4j421.api.gz -text
|
||||
icu4j/tools/build/manifest.stub -text
|
||||
icu4j/tools/misc/manifest.stub -text
|
||||
tools/release/java/.classpath -text
|
||||
|
@ -2,5 +2,5 @@
|
||||
#* Copyright (C) 2009, International Business Machines Corporation and *
|
||||
#* others. All Rights Reserved. *
|
||||
#*******************************************************************************
|
||||
api.report.version = 42
|
||||
api.report.prev.version = 401
|
||||
api.report.version = 431
|
||||
api.report.prev.version = 421
|
||||
|
@ -452,7 +452,7 @@ public final class VersionInfo implements Comparable<VersionInfo>
|
||||
UNICODE_4_1 = getInstance(4, 1, 0, 0);
|
||||
UNICODE_5_0 = getInstance(5, 0, 0, 0);
|
||||
UNICODE_5_1 = getInstance(5, 1, 0, 0);
|
||||
ICU_VERSION = getInstance(4, 2, 0, 0);
|
||||
ICU_VERSION = getInstance(4, 3, 1, 0);
|
||||
UCOL_RUNTIME_VERSION = getInstance(6);
|
||||
UCOL_BUILDER_VERSION = getInstance(7);
|
||||
UCOL_TAILORINGS_VERSION = getInstance(1);
|
||||
|
@ -4,8 +4,8 @@
|
||||
#*******************************************************************************
|
||||
|
||||
# Version numbers, etc.
|
||||
icu4j.spec.version = 4.2
|
||||
icu4j.impl.version = 4.2
|
||||
icu4j.spec.version = 4.3.1
|
||||
icu4j.impl.version = 4.3.1
|
||||
icu4j.data.version = 42
|
||||
current.year = 2009
|
||||
|
||||
|
@ -214,7 +214,7 @@ public class TestConversion extends ModuleTest {
|
||||
}
|
||||
|
||||
} catch (Exception e) {
|
||||
if (skipIfBeforeICU(4,2,0)) { // TIME BOMB
|
||||
if (skipIfBeforeICU(4,3,1)) { // TIME BOMB
|
||||
logln("Skipping test:(" + cc.charset + ") due to ICU Charset not supported at this time");
|
||||
} else {
|
||||
errln(cc.charset + " was not found");
|
||||
@ -496,7 +496,7 @@ public class TestConversion extends ModuleTest {
|
||||
|
||||
} catch (Exception e) {
|
||||
// TODO implement loading of test data.
|
||||
if (skipIfBeforeICU(4,2,0)) {
|
||||
if (skipIfBeforeICU(4,3,1)) {
|
||||
logln("Skipping test:(" + cc.charset + ") due to ICU Charset not supported at this time");
|
||||
} else {
|
||||
errln(cc.charset + " was not found");
|
||||
@ -1095,7 +1095,7 @@ public class TestConversion extends ModuleTest {
|
||||
|
||||
// test to see if the conversion matches actual results
|
||||
if (output.limit() != expected.length()) {
|
||||
if (skipIfBeforeICU(4,2,0)) { // TIME BOMB
|
||||
if (skipIfBeforeICU(4,3,1)) { // TIME BOMB
|
||||
logln("Skipping test:(" + cc.charset + ") due to time bomb");
|
||||
} else {
|
||||
errln("Test failed: output length does not match expected for charset: "+cc.charset+ " [" + cc.caseNr + "]");
|
||||
@ -1119,7 +1119,7 @@ public class TestConversion extends ModuleTest {
|
||||
logln("Expected: " + printchars(CharBuffer.wrap(expected), expected.length()));
|
||||
logln("Passed");
|
||||
}
|
||||
else if (skipIfBeforeICU(4,2,0)) {
|
||||
else if (skipIfBeforeICU(4,3,1)) {
|
||||
// TIME BOMB
|
||||
} else {
|
||||
errln("[" + cc.caseNr + "]:" + cc.charset);
|
||||
|
@ -420,7 +420,7 @@ public class DateTimeGeneratorTest extends TestFmwk {
|
||||
DateOrder order2 = getOrdering(style2, uLocale);
|
||||
if (!order1.hasSameOrderAs(order2)) {
|
||||
if (order1.monthLength == order2.monthLength) { // error if have same month length, different ordering
|
||||
if (skipIfBeforeICU(4,2,0)) {
|
||||
if (skipIfBeforeICU(4,3,1)) {
|
||||
logln(showOrderComparison(uLocale, style1, style2, order1, order2));
|
||||
} else {
|
||||
errln(showOrderComparison(uLocale, style1, style2, order1, order2));
|
||||
|
@ -322,7 +322,7 @@ public class RoundTripTest extends TestFmwk {
|
||||
|
||||
String getGreekSet() {
|
||||
// Time bomb
|
||||
if (skipIfBeforeICU(4,2,0)) {
|
||||
if (skipIfBeforeICU(4,3,1)) {
|
||||
// We temporarily filter against Unicode 4.1, but we only do this
|
||||
// before version 3.5.
|
||||
logln("TestGreek needs to be updated to remove delete the section marked [:Age=4.0:] filter");
|
||||
@ -384,7 +384,7 @@ public class RoundTripTest extends TestFmwk {
|
||||
|
||||
public void TestHebrew() throws IOException {
|
||||
// Time bomb
|
||||
if (skipIfBeforeICU(4,2,0)) {
|
||||
if (skipIfBeforeICU(4,3,1)) {
|
||||
// We temporarily filter against Unicode 4.1, but we only do this
|
||||
// before version 3.5.
|
||||
logln("TestHebrew needs to be updated to remove delete the section marked [:Age=4.0:] filter");
|
||||
@ -399,7 +399,7 @@ public class RoundTripTest extends TestFmwk {
|
||||
|
||||
public void TestThai() throws IOException {
|
||||
long start = System.currentTimeMillis();
|
||||
if(skipIfBeforeICU(4,2,0)){
|
||||
if(skipIfBeforeICU(4,3,1)){
|
||||
new Test("Latin-Thai")
|
||||
.test("[a-zA-Z\u0142\u1ECD\u00E6\u0131\u0268\u02CC]",
|
||||
"[\u0E01-\u0E3A\u0E40-\u0E5B]",
|
||||
@ -481,7 +481,7 @@ public class RoundTripTest extends TestFmwk {
|
||||
|
||||
public void TestDevanagariLatin() throws IOException {
|
||||
long start = System.currentTimeMillis();
|
||||
if (skipIfBeforeICU(4,2,0)) {
|
||||
if (skipIfBeforeICU(4,3,1)) {
|
||||
logln("Warning: TestDevanagariLatin needs to be updated to remove delete the section marked [:Age=4.1:] filter");
|
||||
} else {
|
||||
// We temporarily filter against Unicode 4.1, but we only do this
|
||||
@ -854,7 +854,7 @@ public class RoundTripTest extends TestFmwk {
|
||||
logln("Testing only 5 of "+ interIndicArray.length+" Skipping rest (use -e for exhaustive)");
|
||||
num = 5;
|
||||
}
|
||||
if (skipIfBeforeICU(4,2,0)) {
|
||||
if (skipIfBeforeICU(4,3,1)) {
|
||||
logln("Warning: TestInterIndic needs to be updated to remove delete the section marked [:Age=4.1:] filter");
|
||||
} else {
|
||||
// We temporarily filter against Unicode 4.1, but we only do this
|
||||
|
3
icu4j/tools/build/icu4j42.api.gz
Normal file
3
icu4j/tools/build/icu4j42.api.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5ca8be4f31d1245ef194629faa635726407178b0e3c03cdb1acfecfd14fa477a
|
||||
size 33596
|
3
icu4j/tools/build/icu4j421.api.gz
Normal file
3
icu4j/tools/build/icu4j421.api.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:72b71094b20d55c82d680b99b7a1f380198c003d45b56068798a2ed7aaed2522
|
||||
size 33598
|
Loading…
Reference in New Issue
Block a user