diff options
author | Erlang/OTP <[email protected]> | 2013-05-06 12:16:45 +0200 |
---|---|---|
committer | Erlang/OTP <[email protected]> | 2013-05-06 12:16:45 +0200 |
commit | 48c0c1699cff4ebd7e6750af4f1085ed9a48d005 (patch) | |
tree | 89ba4f0601eb0cfe1c1c53c8fd639e5fd4c63a8e /lib/megaco/test/megaco_codec_flex_lib.erl | |
parent | 9094e59fd99bd46d97ff0c7f39838eb033b61fd5 (diff) | |
parent | 0c0677a913d10b87dd4faa3fc932506f98adcc45 (diff) | |
download | otp-48c0c1699cff4ebd7e6750af4f1085ed9a48d005.tar.gz otp-48c0c1699cff4ebd7e6750af4f1085ed9a48d005.tar.bz2 otp-48c0c1699cff4ebd7e6750af4f1085ed9a48d005.zip |
Merge branch 'bmk/megaco/flex_buffer_overrun_while_scanning_prop_parms/OTP-10998/r15' into maint-r15
* bmk/megaco/flex_buffer_overrun_while_scanning_prop_parms/OTP-10998/r15:
[megaco] Used wrong downgrade tag for (flex) handler
[megaco] Fixrd appup sub-test suite
[megaco] Debug printouts in megaco test server
[megaco] Internal test server not handling failing cases
[megaco] Fix merge
[megaco] Misc codec tickets test case fixes
[megaco] Misc fixes of the (internal) megaco test server
Changed name of test case functions (from seq12263 to otp10998)
Assign correct version and updated release notes accordingly.
Removed comments
Ensure of incorrect number of terms when scanning property groups
Uncommented test cases
Add new messages
Calculation of term_spec size (initial and next) changed
Minor test case rework
Test case cleanup
Add rule for test beam'es
Preliminary test case updates
Diffstat (limited to 'lib/megaco/test/megaco_codec_flex_lib.erl')
-rw-r--r-- | lib/megaco/test/megaco_codec_flex_lib.erl | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/megaco/test/megaco_codec_flex_lib.erl b/lib/megaco/test/megaco_codec_flex_lib.erl index 93bc5d4bbc..3e70454faf 100644 --- a/lib/megaco/test/megaco_codec_flex_lib.erl +++ b/lib/megaco/test/megaco_codec_flex_lib.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2007-2010. All Rights Reserved. +%% Copyright Ericsson AB 2007-2013. All Rights Reserved. %% %% The contents of this file are subject to the Erlang Public License, %% Version 1.1, (the "License"); you may not use this file except in @@ -49,8 +49,14 @@ %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% init(Config) when is_list(Config) -> + %% io:format("~w:init -> entry with" + %% "~n Config: ~p" + %% "~n", [?MODULE, Config]), Flag = process_flag(trap_exit, true), Res = (catch start()), + %% io:format("~w:init -> start result" + %% "~n Res: ~p" + %% "~n", [?MODULE, Res]), process_flag(trap_exit, Flag), case Res of {error, Reason} -> |