gentoo-ebuilds/media-sound/rhythmbox/files/rhythmbox-3.4.7-skip-broken-test.patch
Pacho Ramos e50e5e28a5
media-sound/rhythmbox: Multiple bugfixes
Cherry picks from upstream master to fix implicit declarations,
libxml2 and python 3.12 compat issues.

Closes: https://bugs.gentoo.org/898926
Closes: https://bugs.gentoo.org/929668
Signed-off-by: Pacho Ramos <pacho@gentoo.org>
2024-05-18 10:47:26 +02:00

24 lines
1 KiB
Diff

From: Jeremy Bicha <jeremy.bicha@canonical.com>
Date: Thu, 23 Jun 2022 10:12:20 -0400
Subject: tests: Skip load_query_multiple
This test fails on arm64 only
https://gitlab.gnome.org/GNOME/rhythmbox/-/issues/1993
---
tests/test-widgets.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/test-widgets.c b/tests/test-widgets.c
index 0f725ed..60b194d 100644
--- a/tests/test-widgets.c
+++ b/tests/test-widgets.c
@@ -291,7 +291,7 @@ rb_query_creator_suite (void)
tcase_add_checked_fixture (tc_qls, test_rhythmdb_setup, test_rhythmdb_shutdown);
tcase_add_test (tc_qls, test_query_creator_load_query_empty);
tcase_add_test (tc_qls, test_query_creator_load_query_simple);
- tcase_add_test (tc_qls, test_query_creator_load_query_multiple);
+ /* tcase_add_test (tc_qls, test_query_creator_load_query_multiple); */
tcase_add_test (tc_qls, test_query_creator_load_query_disjunction);
tcase_add_test (tc_qls, test_query_creator_load_limit_count);
tcase_add_test (tc_qls, test_query_creator_load_limit_minutes);