aboutsummaryrefslogtreecommitdiffstats
path: root/lib/megaco/test/megaco_SUITE.erl
diff options
context:
space:
mode:
authorMicael Karlberg <[email protected]>2019-07-29 13:12:01 +0200
committerMicael Karlberg <[email protected]>2019-07-29 13:12:01 +0200
commitbc9e6c80696dfcf91c78f3a4e43c4ab96f645c51 (patch)
treeaa9bc18adec8c392b01e184f4ba71bf525e09eae /lib/megaco/test/megaco_SUITE.erl
parent52eea8c9ede181cadb248321182b37f75f10c66d (diff)
downloadotp-bc9e6c80696dfcf91c78f3a4e43c4ab96f645c51.tar.gz
otp-bc9e6c80696dfcf91c78f3a4e43c4ab96f645c51.tar.bz2
otp-bc9e6c80696dfcf91c78f3a4e43c4ab96f645c51.zip
[megaco|test] More timing issues
Adjusted some timeouts... Also, add time stamp to the 'delivery' printouts.
Diffstat (limited to 'lib/megaco/test/megaco_SUITE.erl')
-rw-r--r--lib/megaco/test/megaco_SUITE.erl14
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/megaco/test/megaco_SUITE.erl b/lib/megaco/test/megaco_SUITE.erl
index a73a73409b..f7b8ffe032 100644
--- a/lib/megaco/test/megaco_SUITE.erl
+++ b/lib/megaco/test/megaco_SUITE.erl
@@ -110,6 +110,20 @@ groups() ->
{flex, [], [{megaco_flex_test, all}]}].
init_per_suite(Config) ->
+ io:format("~w:init_per_suite -> entry with"
+ "~n Config: ~p"
+ "~n OS Type: ~p"
+ "~n OS Version: ~s"
+ "~n",
+ [?MODULE,
+ Config,
+ os:type(),
+ case os:version() of
+ {Major, Minor, Release} ->
+ ?F("~w.~w.~w", [Major, Minor, Release]);
+ Str when is_list(Str) ->
+ Str
+ end]),
Config.
end_per_suite(_Config) ->