diff options
author | Micael Karlberg <[email protected]> | 2013-05-20 18:02:23 +0200 |
---|---|---|
committer | Micael Karlberg <[email protected]> | 2013-05-20 18:02:23 +0200 |
commit | e0e9885cd3561c46114ee22ac84c01d9347187ea (patch) | |
tree | 0856289aed1b44a42357f4f903db6a756ee03171 /lib/megaco/test/megaco_codec_flex_lib.erl | |
parent | 1e3c35c1c860895ee6bfd483ef23a7aebfa7cda0 (diff) | |
parent | f083e4298d751bb564915b03f0c32114d533d086 (diff) | |
download | otp-e0e9885cd3561c46114ee22ac84c01d9347187ea.tar.gz otp-e0e9885cd3561c46114ee22ac84c01d9347187ea.tar.bz2 otp-e0e9885cd3561c46114ee22ac84c01d9347187ea.zip |
Merge branch 'maint-r16' into maint
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} -> |