From f8ca9b5cc8aaafdee199cd3a3a0ab97f3dfa13ba Mon Sep 17 00:00:00 2001 From: Stefan Schmidt Date: Tue, 5 Jul 2016 11:02:36 +0200 Subject: [PATCH] tests: ecore_audio: disable stalling audio_obj_pulse test This test is stalling. Locally as well as on Jenkins. I tried to bisect it without any luck. Even running it from the 1.17 release it does no longer work so i guess it is some change coming from a pulse update on my system. I have version 7.1 here. As we have no-one working actively on ecore_audio I disable the test here and we can track the problem on T4018. --- src/tests/ecore/ecore_test_ecore_audio.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/tests/ecore/ecore_test_ecore_audio.c b/src/tests/ecore/ecore_test_ecore_audio.c index 64a557ec76..29c05f1526 100644 --- a/src/tests/ecore/ecore_test_ecore_audio.c +++ b/src/tests/ecore/ecore_test_ecore_audio.c @@ -22,6 +22,7 @@ static void _looped_cb(void *data EINA_UNUSED, const Eo_Event *event) } #ifdef HAVE_PULSE +#if 0 static void _failed_cb(void *data, const Eo_Event *event EINA_UNUSED) { Eina_Bool *pulse_context_failed = data; @@ -82,6 +83,7 @@ START_TEST(ecore_test_ecore_audio_obj_pulse) } END_TEST #endif +#endif static Eina_Bool _quit(void *data EINA_UNUSED) { @@ -633,7 +635,7 @@ ecore_test_ecore_audio(TCase *tc) tcase_add_test(tc, ecore_test_ecore_audio_cleanup); #endif #ifdef HAVE_PULSE - tcase_add_test(tc, ecore_test_ecore_audio_obj_pulse); + //tcase_add_test(tc, ecore_test_ecore_audio_obj_pulse); #endif }