diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2024-05-25 13:48:03 -0500 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2024-08-07 09:57:55 -0500 |
commit | d1c41695070323085469c286947fa4bb70a2f6e3 (patch) | |
tree | ebe571144e62fa5f9f54c249cbef9d838244dda8 /system/icu | |
parent | 31959c99e65a647741d8e95e11f21780d8996d6b (diff) | |
download | packages-d1c41695070323085469c286947fa4bb70a2f6e3.tar.gz packages-d1c41695070323085469c286947fa4bb70a2f6e3.tar.bz2 packages-d1c41695070323085469c286947fa4bb70a2f6e3.tar.xz packages-d1c41695070323085469c286947fa4bb70a2f6e3.zip |
system/icu: Multiple test improvements
* Use TZ=UTC for running tests. Ref: #1169.
* Use older GCC behaviour for floating point math. Closes: #1193.
Diffstat (limited to 'system/icu')
-rw-r--r-- | system/icu/APKBUILD | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/system/icu/APKBUILD b/system/icu/APKBUILD index a2b0af950..62b39f2e4 100644 --- a/system/icu/APKBUILD +++ b/system/icu/APKBUILD @@ -43,6 +43,9 @@ prepare() { } build() { + # GCC 13 changed default fp precision behavior. (#1193) + export CXXFLAGS="${CXXFLAGS} -fexcess-precision=fast" + ./configure \ --build=$CBUILD \ --host=$CHOST \ @@ -59,7 +62,8 @@ build() { } check() { - make check + # Using TZ=UTC temporarily until we can update ICU. (#1169) + TZ=UTC make check } package() { |