diff options
author | Peter Andersson <[email protected]> | 2011-07-13 17:20:45 +0200 |
---|---|---|
committer | Peter Andersson <[email protected]> | 2011-09-23 12:24:54 +0200 |
commit | d3b636f97ce36e106ac53beb4cba0db13cd5656f (patch) | |
tree | 236c5c23725a9b8513e5bd5007ae808a24dcb15a /lib/common_test/src/ct_framework.erl | |
parent | e0440ea67e0b1ce05ca2305f7f4b52e4e23ce493 (diff) | |
download | otp-d3b636f97ce36e106ac53beb4cba0db13cd5656f.tar.gz otp-d3b636f97ce36e106ac53beb4cba0db13cd5656f.tar.bz2 otp-d3b636f97ce36e106ac53beb4cba0db13cd5656f.zip |
Fix problem with automatically generated init & end-config functions for groups
OTP-9369
Diffstat (limited to 'lib/common_test/src/ct_framework.erl')
-rw-r--r-- | lib/common_test/src/ct_framework.erl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/common_test/src/ct_framework.erl b/lib/common_test/src/ct_framework.erl index 2ebc6c311a..4f57736591 100644 --- a/lib/common_test/src/ct_framework.erl +++ b/lib/common_test/src/ct_framework.erl @@ -1159,12 +1159,14 @@ error_in_suite(Config) -> %% if the group config functions are missing in the suite, %% use these instead ct_init_per_group(GroupName, Config) -> + ct:comment(io_lib:format("start of ~p", [GroupName])), ct_logs:log("WARNING", "init_per_group/2 for ~w missing " "in suite, using default.", [GroupName]), Config. ct_end_per_group(GroupName, _) -> + ct:comment(io_lib:format("end of ~p", [GroupName])), ct_logs:log("WARNING", "end_per_group/2 for ~w missing " "in suite, using default.", [GroupName]), |