xref: /openbmc/openbmc/poky/meta/recipes-core/glib-2.0/files/skip-timeout.patch (revision 8460358c3d24c71d9d38fd126c745854a6301564)
1From 7cd21568601b78720f92955f1e794ca4f11c225d Mon Sep 17 00:00:00 2001
2From: Ross Burton <ross.burton@arm.com>
3Date: Thu, 28 Mar 2024 16:27:09 +0000
4Subject: [PATCH] Skip /timeout/rounding test
5
6This test is sensitive to load because it expects certain timeout operations
7to succeed in specific time periods. Whilst these timeouts are fairly large,
8they're still exceeded inside a qemu on a loaded system.
9
10https://bugzilla.yoctoproject.org/show_bug.cgi?id=14464
11
12Upstream-Status: Inappropriate [OE-specific]
13Signed-off-by: Ross Burton <ross.burton@arm.com>
14---
15 glib/tests/timeout.c | 1 -
16 1 file changed, 1 deletion(-)
17
18diff --git a/glib/tests/timeout.c b/glib/tests/timeout.c
19index 1ae3f3a..85a715b 100644
20--- a/glib/tests/timeout.c
21+++ b/glib/tests/timeout.c
22@@ -214,7 +214,6 @@ main (int argc, char *argv[])
23   g_test_add_func ("/timeout/seconds-once", test_seconds_once);
24   g_test_add_func ("/timeout/weeks-overflow", test_weeks_overflow);
25   g_test_add_func ("/timeout/far-future-ready-time", test_far_future_ready_time);
26-  g_test_add_func ("/timeout/rounding", test_rounding);
27
28   return g_test_run ();
29 }
30