mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 11:26:16 +01:00
GDateTime test: fix a race
We have a GDateTime test that compares the time now (as per the libc) to the time now (as per GDateTime). The problem is that the time could change between those two "now"s.
This commit is contained in:
parent
af9e40dc5d
commit
19e7026fe7
@ -724,7 +724,7 @@ test_GDateTime_to_utc (void)
|
||||
memcpy (&tm, tmp, sizeof (struct tm));
|
||||
}
|
||||
#endif
|
||||
dt2 = g_date_time_new_now_local ();
|
||||
dt2 = g_date_time_new_from_unix_local (t);
|
||||
dt = g_date_time_to_utc (dt2);
|
||||
g_assert_cmpint (tm.tm_year + 1900, ==, g_date_time_get_year (dt));
|
||||
g_assert_cmpint (tm.tm_mon + 1, ==, g_date_time_get_month (dt));
|
||||
|
Loading…
Reference in New Issue
Block a user