Commit 4591fe76 authored by Filip Filmar's avatar Filip Filmar Committed by Commit Bot

[i18n] Disables TimeZoneData tests

To unblock Chromium rolls into Fuchsia.

Until https://bugs.fuchsia.dev/p/fuchsia/issues/detail?id=45491 is fixed.

The current tests do not reinitialize the internal state of `icu_util` correctly,
leading to spurious test errors.  The fix should be straightforward, but takes
some time.  Disabling these tests will allow the rolls to continue while
we fix the issue in the background.

Bug: fuchsia:45491
Change-Id: Ifeabd973970cad70d7604da76f0948dbbb8b63ab
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2042148
Commit-Queue: Filip Filmar <fmil@google.com>
Reviewed-by: default avatarKevin Marshall <kmarshall@chromium.org>
Reviewed-by: default avatarDavid Dorwin <ddorwin@chromium.org>
Cr-Commit-Position: refs/heads/master@{#739254}
parent cc86cf8b
......@@ -31,7 +31,7 @@ class TimeZoneDataTest : public testing::Test {
std::unique_ptr<base::Environment> env_;
};
TEST_F(TimeZoneDataTest, RevisionFromConfig) {
TEST_F(TimeZoneDataTest, DISABLED_RevisionFromConfig) {
// Config data is not available on Chromium test runners, so don't actually
// run this test there. A marker for this is the presence of revision.txt.
if (!base::PathExists(base::FilePath("/config/data/tzdata/revision.txt")))
......@@ -49,7 +49,7 @@ TEST_F(TimeZoneDataTest, RevisionFromConfig) {
EXPECT_EQ(expected, actual);
}
TEST_F(TimeZoneDataTest, RevisionFromTestData) {
TEST_F(TimeZoneDataTest, DISABLED_RevisionFromTestData) {
// TODO(1047475): Adding more asserts in case they give more hints to the
// buildbot failures.
ASSERT_TRUE(base::DirectoryExists(
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment