From b665b70f7c2354494c5d72789f39a4555f568f86 Mon Sep 17 00:00:00 2001 From: Donat Zenichev Date: Mon, 20 Feb 2023 10:41:07 +0100 Subject: [PATCH] MT#56128 Re-add test for SDP attr manipulations The test number 1142: "SDP attr manipulations - add a= line for media audio, two times" used to fail on the buster builds, because of the hash tables implementation we had in the `command_values` of the `struct sdp_command`. It didn't necessarily keep the same order, as was used to add values. Now as the SDP manipulations structures is re-designed, we can re-add it. Change-Id: Icc7d030894d45c9d62e91669915eafb348d05d97 --- t/auto-daemon-tests.pl | 44 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/t/auto-daemon-tests.pl b/t/auto-daemon-tests.pl index 819e1ca14..500433fa2 100755 --- a/t/auto-daemon-tests.pl +++ b/t/auto-daemon-tests.pl @@ -15545,6 +15545,50 @@ SDP new_call; +offer('SDP attr manipulations - add a= line for media audio, two times', { ICE => 'remove', DTLS => 'off', SDES => [ 'nonew' ], 'sdp-attr' => { audio => { add => ['test1', 'test2'] } }}, < 'remove' }, < 'remove', DTLS => 'off', SDES => [ 'nonew' ], 'sdp-attr' => { audio => { add => ['test1'], remove => ['test2'] } }}, <