diff options
author | Björn Gustavsson <[email protected]> | 2013-09-05 06:31:20 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2013-09-18 10:22:30 +0200 |
commit | 2c59448f7e3726c241719b5952c1685cf6a6313a (patch) | |
tree | 84e9ac17a3a01b22fde3eb1dd56c84701d56c551 /lib/asn1/test/h323test.erl | |
parent | e8c243e18b47914a76c888e2eb596678e2ae8c2d (diff) | |
download | otp-2c59448f7e3726c241719b5952c1685cf6a6313a.tar.gz otp-2c59448f7e3726c241719b5952c1685cf6a6313a.tar.bz2 otp-2c59448f7e3726c241719b5952c1685cf6a6313a.zip |
asn_SUITE: Fold per_GeneralString/1 into h323test
The per_GeneralString/1 test case compiles MULTIMEDIA-SYSTEM-CONTROL
and then does a single decoding. Save some compilation time by folding
the test into the h323test/1 test case.
Diffstat (limited to 'lib/asn1/test/h323test.erl')
-rw-r--r-- | lib/asn1/test/h323test.erl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/asn1/test/h323test.erl b/lib/asn1/test/h323test.erl index 426ae16994..dfc1173d68 100644 --- a/lib/asn1/test/h323test.erl +++ b/lib/asn1/test/h323test.erl @@ -28,6 +28,7 @@ run(_Rules) -> ok. run() -> alerting(), connect(), + general_string(), ok. dec_alerting() -> @@ -59,6 +60,11 @@ connect() -> ByteList = lists:flatten(B), {ok,V} = asn1_wrapper:decode('H323-MESSAGES','H323-UserInformation',ByteList). +general_string() -> + Type = 'MultimediaSystemControlMessage', + UI = <<109,64,1,57>>, + {ok, _V} = 'MULTIMEDIA-SYSTEM-CONTROL':decode(Type, UI). + hexstr2bytes([D1,D2|T]) -> [dig2num(D1)*16+dig2num(D2)|hexstr2bytes(T)]; hexstr2bytes([]) -> |