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
offer('SDP attr manipulations - add a= line for media audio, two times',{ICE=>'remove',DTLS=>'off',SDES=>['nonew'],'sdp-attr'=>{audio=>{add=>['test1','test2']}}},<<SDP);
v=0
o=-15459970271INIP4198.51.100.1
s=tester
t=00
m=audio2000RTP/SAVP0
c=INIP4198.51.100.1
a=sendrecv
----------------------------------
v=0
o=-15459970271INIP4198.51.100.1
s=tester
t=00
m=audioPORTRTP/SAVP0
c=INIP4203.0.113.1
a=rtpmap:0PCMU/8000
a=sendrecv
a=rtcp:PORT
a=test1
a=test2
SDP
answer('SDP attr manipulations - add a= line for media audio, two times',{ICE=>'remove'},<<SDP);
v=0
o=-15459970271INIP4198.51.100.3
s=tester
t=00
m=audio2002RTP/SAVP0
c=INIP4198.51.100.3
a=sendrecv
--------------------------------------
v=0
o=-15459970271INIP4198.51.100.3
s=tester
t=00
m=audioPORTRTP/SAVP0
c=INIP4203.0.113.1
a=rtpmap:0PCMU/8000
a=sendrecv
a=rtcp:PORT
SDP
new_call;
offer('SDP attr manipulations - add a= line for media audio and remove one',{ICE=>'remove',DTLS=>'off',SDES=>['nonew'],'sdp-attr'=>{audio=>{add=>['test1'],remove=>['test2']}}},<<SDP);
offer('SDP attr manipulations - add a= line for media audio and remove one',{ICE=>'remove',DTLS=>'off',SDES=>['nonew'],'sdp-attr'=>{audio=>{add=>['test1'],remove=>['test2']}}},<<SDP);