fuchsia: Disable TimeZone.Basic test as timezones are non-functional

TZ related functionality isn't working in Fuchsia right now
https://fuchsia.googlesource.com/zircon/+/master/third_party/ulib/musl/src/time/__tz.c#9
so this test has no chance of working. Disable for now.

Bug: crashpad:196
Change-Id: I77c3d38e5f5fc98f2e7bf8c493df269eb142ce75
Reviewed-on: https://chromium-review.googlesource.com/923201
Commit-Queue: Scott Graham <scottmg@chromium.org>
Reviewed-by: Mark Mentovai <mark@chromium.org>
This commit is contained in:
Scott Graham 2018-02-16 09:48:15 -08:00 committed by Commit Bot
parent 0403602393
commit 10222b1236

View File

@ -338,7 +338,11 @@ source_set("snapshot_test") {
"win/process_snapshot_win_test.cc",
"win/system_snapshot_win_test.cc",
]
} else {
} else if (!crashpad_is_fuchsia) {
# Timezones are currently non-functional on Fuchsia:
# https://fuchsia.googlesource.com/zircon/+/master/third_party/ulib/musl/src/time/__tz.c#9
# https://crashpad.chromium.org/bug/196. Relevant upstream bugs are ZX-337
# and ZX-1731.
sources += [ "posix/timezone_test.cc" ]
}