diff options
author | Micael Karlberg <[email protected]> | 2013-03-22 11:20:08 +0100 |
---|---|---|
committer | Micael Karlberg <[email protected]> | 2013-03-22 11:20:08 +0100 |
commit | 70be956dafd2f9514946ed6aa5cc2863e553ad04 (patch) | |
tree | a4b6bfa6756452ff645fe07a6cc214edfaf7e670 /lib/megaco/test/megaco_codec_flex_lib.erl | |
parent | 84adefa331c4159d432d22840663c38f155cd4c1 (diff) | |
download | otp-70be956dafd2f9514946ed6aa5cc2863e553ad04.tar.gz otp-70be956dafd2f9514946ed6aa5cc2863e553ad04.tar.bz2 otp-70be956dafd2f9514946ed6aa5cc2863e553ad04.zip |
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 de76956711..e5f62fe69c 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-2009. 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} -> |