From 5dba8dfe593819a1bffe16320cb95845c67eb422 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Thu, 17 Apr 2014 17:43:12 +0200 Subject: [PATCH] rtprtx: Provide an ssrc in the test And increase timeout to allow all tests to run in valgrind. --- tests/check/elements/rtprtx.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/check/elements/rtprtx.c b/tests/check/elements/rtprtx.c index b819d0cf47..c5c8a88ba6 100644 --- a/tests/check/elements/rtprtx.c +++ b/tests/check/elements/rtprtx.c @@ -38,6 +38,7 @@ static GMainLoop *main_loop; "media = (string)audio, " \ "payload = (int) 0, " \ "clock-rate = (int) 8000, " \ + "ssrc = (uint) 42, " \ "encoding-name = (string)PCMU" #define RTP_FRAME_SIZE 20 @@ -1495,7 +1496,7 @@ rtprtx_suite (void) Suite *s = suite_create ("rtprtx"); TCase *tc_chain = tcase_create ("general"); - tcase_set_timeout (tc_chain, 10); + tcase_set_timeout (tc_chain, 120); suite_add_tcase (s, tc_chain);