From f508bc491eb605cf35727170dabd04bb00fdf035 Mon Sep 17 00:00:00 2001 From: yumaoka Date: Fri, 12 Apr 2019 14:16:13 -0400 Subject: [PATCH 1/2] ICU-20554 Disabled current date sensitive Japanese era test cases for now. --- icu4c/source/test/testdata/format.txt | 70 +++++++++++++-------------- icu4j/main/shared/data/testdata.jar | 4 +- 2 files changed, 37 insertions(+), 37 deletions(-) diff --git a/icu4c/source/test/testdata/format.txt b/icu4c/source/test/testdata/format.txt index 18bacecee5b..02add1b96d6 100644 --- a/icu4c/source/test/testdata/format.txt +++ b/icu4c/source/test/testdata/format.txt @@ -489,41 +489,41 @@ format:table(nofallback) { }, // Japanese - { - "en_US@calendar=japanese", - "", - "PATTERN=G y", - "YEAR=8", - "Heisei 8" - }, - { - "en_US@calendar=japanese", - "", - "PATTERN=G yy", - "YEAR=8", - "Heisei 08" - }, - { - "en_US@calendar=japanese", - "", - "PATTERN=G yyy", - "YEAR=8", - "Heisei 008" - }, - { - "en_US@calendar=japanese", - "", - "PATTERN=G yyyy", - "YEAR=8", - "Heisei 0008" - }, - { - "en_US@calendar=japanese", - "", - "PATTERN=G yyyyy", - "YEAR=8", - "Heisei 00008" - }, +// { +// "en_US@calendar=japanese", +// "", +// "PATTERN=G y", +// "YEAR=8", +// "Heisei 8" +// }, +// { +// "en_US@calendar=japanese", +// "", +// "PATTERN=G yy", +// "YEAR=8", +// "Heisei 08" +// }, +// { +// "en_US@calendar=japanese", +// "", +// "PATTERN=G yyy", +// "YEAR=8", +// "Heisei 008" +// }, +// { +// "en_US@calendar=japanese", +// "", +// "PATTERN=G yyyy", +// "YEAR=8", +// "Heisei 0008" +// }, +// { +// "en_US@calendar=japanese", +// "", +// "PATTERN=G yyyyy", +// "YEAR=8", +// "Heisei 00008" +// }, } } diff --git a/icu4j/main/shared/data/testdata.jar b/icu4j/main/shared/data/testdata.jar index f9087b348bd..23dcfafc76a 100644 --- a/icu4j/main/shared/data/testdata.jar +++ b/icu4j/main/shared/data/testdata.jar @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:22228512782eaebd6f7f7fa4187b5c0382829976cec88b94ed5556547f6000af -size 723404 +oid sha256:3a09da92d612c34c7f468f073b356c7323e14f0fb53b0eb34483beed0a296ac4 +size 723338 From e2d85306162d3a0691b070b4f0a73e4012433444 Mon Sep 17 00:00:00 2001 From: "Steven R. Loomis" Date: Wed, 17 Apr 2019 08:58:08 -0700 Subject: [PATCH 2/2] ICU-20563 fix macosx rpath breakage in the data build - in the rpath case, we do NOT want a trailing space in LD_SONAME regression was introduced in ICU-20526 with 83a0542b5b52a30b7af736f5ef6b0405f6582867 (master) b76cb6517efa113739a3ffadda7ff024db0d5689 (in maint-64) (cherry picked from commit 1c553b9cf28d25c0aaf961c5f587f4ad3cee2679) --- icu4c/source/config/mh-darwin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/icu4c/source/config/mh-darwin b/icu4c/source/config/mh-darwin index dc708f61748..7b15709c860 100644 --- a/icu4c/source/config/mh-darwin +++ b/icu4c/source/config/mh-darwin @@ -31,7 +31,7 @@ SHLIB.cc= $(CXX) -dynamiclib -dynamic $(CXXFLAGS) $(LDFLAGS) $(LD_SOOPTIONS) ## Compiler switches to embed a library name and version information ifeq ($(ENABLE_RPATH),YES) -LD_SONAME = -Wl,-compatibility_version -Wl,$(SO_TARGET_VERSION_MAJOR) -Wl,-current_version -Wl,$(SO_TARGET_VERSION) -install_name $(libdir)/$(notdir $(MIDDLE_SO_TARGET)) $(PKGDATA_TRAILING_SPACE) +LD_SONAME = -Wl,-compatibility_version -Wl,$(SO_TARGET_VERSION_MAJOR) -Wl,-current_version -Wl,$(SO_TARGET_VERSION) -install_name $(libdir)/$(notdir $(MIDDLE_SO_TARGET)) else LD_SONAME = -Wl,-compatibility_version -Wl,$(SO_TARGET_VERSION_MAJOR) -Wl,-current_version -Wl,$(SO_TARGET_VERSION) -install_name $(notdir $(MIDDLE_SO_TARGET)) $(PKGDATA_TRAILING_SPACE) endif