aboutsummaryrefslogtreecommitdiffstats
path: root/lib/common_test/test/ct_hooks_SUITE_data
diff options
context:
space:
mode:
authorPeter Andersson <[email protected]>2012-03-19 12:28:11 +0100
committerPeter Andersson <[email protected]>2012-03-19 14:16:04 +0100
commit7b16f86fb5933a94b21a11391dc37562283991da (patch)
treeb01392c16c1ce81e20ae76f37e86ce0160923c47 /lib/common_test/test/ct_hooks_SUITE_data
parentd4d4792d2706ae81ca190edc3636079e31b2b084 (diff)
downloadotp-7b16f86fb5933a94b21a11391dc37562283991da.tar.gz
otp-7b16f86fb5933a94b21a11391dc37562283991da.tar.bz2
otp-7b16f86fb5933a94b21a11391dc37562283991da.zip
Fix error with group config deleted before post_end_per_group
OTP-9989 Also improve ct_hooks test suite.
Diffstat (limited to 'lib/common_test/test/ct_hooks_SUITE_data')
-rw-r--r--lib/common_test/test/ct_hooks_SUITE_data/cth/tests/verify_config_cth.erl5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/common_test/test/ct_hooks_SUITE_data/cth/tests/verify_config_cth.erl b/lib/common_test/test/ct_hooks_SUITE_data/cth/tests/verify_config_cth.erl
index f86e1a8b01..99ea261e14 100644
--- a/lib/common_test/test/ct_hooks_SUITE_data/cth/tests/verify_config_cth.erl
+++ b/lib/common_test/test/ct_hooks_SUITE_data/cth/tests/verify_config_cth.erl
@@ -27,7 +27,7 @@
-define(val(K, L), proplists:get_value(K, L)).
id(Opts) ->
- empty_cth:id(Opts).
+ ?MODULE.
init(Id, Opts) ->
{ok, State} = empty_cth:init(Id, Opts),
@@ -86,8 +86,7 @@ pre_end_per_group(Group,Config,State) ->
post_end_per_group(Group,Config,Return,State) ->
true = ?val(pre_end_per_group, Config),
ct_no_config_SUITE = ct:get_config(suite_cfg),
- %%! BUG! SHOULD WORK:
- %%! test_group = ct:get_config(group_cfg),
+ test_group = ct:get_config(group_cfg),
empty_cth:post_end_per_group(Group,Config,Return,State).
pre_init_per_testcase(TC,Config,State) ->