From c94da304c3573f0ba54c35abcc1536e2feae5a1b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Grisez?= Date: Thu, 24 Sep 2015 11:04:20 +0200 Subject: [PATCH] Fix "Single call/Call with mkv file" tester on platform that does not support Opus --- tester/call_tester.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tester/call_tester.c b/tester/call_tester.c index 283e3984a..2422b6c69 100644 --- a/tester/call_tester.c +++ b/tester/call_tester.c @@ -2522,6 +2522,7 @@ static void call_with_mkv_file_player(void) { int res = linphone_player_open(player,hellomkv,on_eof,marie); if(!ms_filter_codec_supported("opus")) { BC_ASSERT_EQUAL(res, -1, int, "%d"); + end_call(marie, pauline); goto end; } BC_ASSERT_EQUAL(res, 0, int, "%d");