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.
This commit is contained in:
Stefan Schmidt 2016-07-05 11:02:36 +02:00
parent 493df60950
commit f8ca9b5cc8
1 changed files with 3 additions and 1 deletions

View File

@ -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
}