diff options
| author | Jinfeng Wang <jinfeng.wang.cn@windriver.com> | 2024-11-04 15:35:23 +0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-11-05 11:17:17 +0000 |
| commit | f39dd8d7b45f7a0e895566ff9df1f80c1b505301 (patch) | |
| tree | c89bfd51fc89b8c154fe1472d4e15319eb3bae84 /meta/recipes-core/glib-2.0/files/gdatetime-test-fail-0001.patch | |
| parent | a2afa244fa615b12197983c52bd740c4499650d4 (diff) | |
| download | poky-f39dd8d7b45f7a0e895566ff9df1f80c1b505301.tar.gz | |
glib-2.0: fix glib-2.0 ptest failure when upgrading tzdata2024b
Backport 3 patches [1][2][3] for gdatetime test to fix the ptest failure.
[1] https://github.com/GNOME/glib/commit/c0619f08e6c608fd6464d2f0c6970ef0bbfb9ecf
[2] https://github.com/GNOME/glib/commit/30e9cfa5733003cd1079e0e9e8a4bff1a191171a
[3] https://github.com/GNOME/glib/commit/fe2699369f79981dcf913af4cfd98b342b84a9c1
(From OE-Core rev: 0c8f87d5d4ec9f286b1e85d114cb9a728c1ff64b)
Signed-off-by: Jinfeng Wang <jinfeng.wang.cn@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/glib-2.0/files/gdatetime-test-fail-0001.patch')
| -rw-r--r-- | meta/recipes-core/glib-2.0/files/gdatetime-test-fail-0001.patch | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/meta/recipes-core/glib-2.0/files/gdatetime-test-fail-0001.patch b/meta/recipes-core/glib-2.0/files/gdatetime-test-fail-0001.patch new file mode 100644 index 0000000000..e78d96c3ce --- /dev/null +++ b/meta/recipes-core/glib-2.0/files/gdatetime-test-fail-0001.patch | |||
| @@ -0,0 +1,72 @@ | |||
| 1 | From 729d1cbcd599e848bee07c72a276ccc02a06ddc0 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: "Rebecca N. Palmer" <rebecca_palmer@zoho.com> | ||
| 3 | Date: Fri, 11 Oct 2024 09:38:52 +0100 | ||
| 4 | Subject: [PATCH 1/3] gdatetime test: Do not assume PST8PDT was always exactly | ||
| 5 | -8/-7 | ||
| 6 | |||
| 7 | In newer tzdata, it is an alias for America/Los_Angeles, which has a | ||
| 8 | slightly different meaning: DST did not exist there before 1883. As a | ||
| 9 | result, we can no longer hard-code the knowledge that interval 0 is | ||
| 10 | standard time and interval 1 is summer time, and instead we need to look | ||
| 11 | up the correct intervals from known timestamps. | ||
| 12 | |||
| 13 | Resolves: https://gitlab.gnome.org/GNOME/glib/-/issues/3502 | ||
| 14 | Bug-Debian: https://bugs.debian.org/1084190 | ||
| 15 | [smcv: expand commit message, fix whitespace] | ||
| 16 | Signed-off-by: Simon McVittie <smcv@debian.org> | ||
| 17 | |||
| 18 | Upstream-Status: Backport | ||
| 19 | [https://github.com/GNOME/glib/commit/c0619f08e6c608fd6464d2f0c6970ef0bbfb9ecf] | ||
| 20 | |||
| 21 | Signed-off-by: Jinfeng Wang <jinfeng.wang.cn@windriver.com> | ||
| 22 | --- | ||
| 23 | glib/tests/gdatetime.c | 22 ++++++++++++++++------ | ||
| 24 | 1 file changed, 16 insertions(+), 6 deletions(-) | ||
| 25 | |||
| 26 | diff --git a/glib/tests/gdatetime.c b/glib/tests/gdatetime.c | ||
| 27 | index d46f653ac..2eefc4106 100644 | ||
| 28 | --- a/glib/tests/gdatetime.c | ||
| 29 | +++ b/glib/tests/gdatetime.c | ||
| 30 | @@ -2930,6 +2930,7 @@ test_posix_parse (void) | ||
| 31 | { | ||
| 32 | GTimeZone *tz; | ||
| 33 | GDateTime *gdt1, *gdt2; | ||
| 34 | + gint i1, i2; | ||
| 35 | |||
| 36 | /* Check that an unknown zone name falls back to UTC. */ | ||
| 37 | G_GNUC_BEGIN_IGNORE_DEPRECATIONS | ||
| 38 | @@ -2953,16 +2954,25 @@ test_posix_parse (void) | ||
| 39 | |||
| 40 | /* This fails rules_from_identifier on Unix (though not on Windows) | ||
| 41 | * but passes anyway because PST8PDT is a zone name. | ||
| 42 | + * | ||
| 43 | + * Intervals i1 and i2 (rather than 0 and 1) are needed because in | ||
| 44 | + * recent tzdata, PST8PDT may be an alias for America/Los_Angeles, | ||
| 45 | + * and hence be aware that DST has not always existed. | ||
| 46 | + * https://bugs.debian.org/1084190 | ||
| 47 | */ | ||
| 48 | tz = g_time_zone_new_identifier ("PST8PDT"); | ||
| 49 | g_assert_nonnull (tz); | ||
| 50 | g_assert_cmpstr (g_time_zone_get_identifier (tz), ==, "PST8PDT"); | ||
| 51 | - g_assert_cmpstr (g_time_zone_get_abbreviation (tz, 0), ==, "PST"); | ||
| 52 | - g_assert_cmpint (g_time_zone_get_offset (tz, 0), ==, - 8 * 3600); | ||
| 53 | - g_assert (!g_time_zone_is_dst (tz, 0)); | ||
| 54 | - g_assert_cmpstr (g_time_zone_get_abbreviation (tz, 1), ==, "PDT"); | ||
| 55 | - g_assert_cmpint (g_time_zone_get_offset (tz, 1), ==,- 7 * 3600); | ||
| 56 | - g_assert (g_time_zone_is_dst (tz, 1)); | ||
| 57 | + /* a date in winter = non-DST */ | ||
| 58 | + i1 = g_time_zone_find_interval (tz, G_TIME_TYPE_STANDARD, 0); | ||
| 59 | + /* approximately 6 months in seconds, i.e. a date in summer = DST */ | ||
| 60 | + i2 = g_time_zone_find_interval (tz, G_TIME_TYPE_DAYLIGHT, 15000000); | ||
| 61 | + g_assert_cmpstr (g_time_zone_get_abbreviation (tz, i1), ==, "PST"); | ||
| 62 | + g_assert_cmpint (g_time_zone_get_offset (tz, i1), ==, - 8 * 3600); | ||
| 63 | + g_assert (!g_time_zone_is_dst (tz, i1)); | ||
| 64 | + g_assert_cmpstr (g_time_zone_get_abbreviation (tz, i2), ==, "PDT"); | ||
| 65 | + g_assert_cmpint (g_time_zone_get_offset (tz, i2), ==,- 7 * 3600); | ||
| 66 | + g_assert (g_time_zone_is_dst (tz, i2)); | ||
| 67 | g_time_zone_unref (tz); | ||
| 68 | |||
| 69 | tz = g_time_zone_new_identifier ("PST8PDT6:32:15"); | ||
| 70 | -- | ||
| 71 | 2.34.1 | ||
| 72 | |||
