aboutsummaryrefslogtreecommitdiffstats
path: root/lib/common_test/src/ct_suite_callback.erl
diff options
context:
space:
mode:
authorLukas Larsson <[email protected]>2010-12-07 19:14:03 +0100
committerLukas Larsson <[email protected]>2010-12-08 18:08:28 +0100
commit8b33f2edabbfd684e619238bbfaa10cc16e2a0a7 (patch)
tree0ce421dbc6c82cd4aeaefbe0b0f8afac94f2ca09 /lib/common_test/src/ct_suite_callback.erl
parent6288b704f2ee0699407f645536ad69e0dd07756d (diff)
downloadotp-8b33f2edabbfd684e619238bbfaa10cc16e2a0a7.tar.gz
otp-8b33f2edabbfd684e619238bbfaa10cc16e2a0a7.tar.bz2
otp-8b33f2edabbfd684e619238bbfaa10cc16e2a0a7.zip
Fix bug which caused scb to be added too much when initiated in the suite info function
Diffstat (limited to 'lib/common_test/src/ct_suite_callback.erl')
-rw-r--r--lib/common_test/src/ct_suite_callback.erl8
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/common_test/src/ct_suite_callback.erl b/lib/common_test/src/ct_suite_callback.erl
index 46bc250106..4f6bf9942e 100644
--- a/lib/common_test/src/ct_suite_callback.erl
+++ b/lib/common_test/src/ct_suite_callback.erl
@@ -68,7 +68,13 @@ terminate(Callbacks) ->
init_tc(ct_framework, _Func, Args) ->
Args;
init_tc(Mod, init_per_suite, Config) ->
- call(fun call_generic/3, Config, [pre_init_per_suite, Mod]);
+ Info = case catch proplists:get_value(suite_callbacks, Mod:suite()) of
+ List when is_list(List) ->
+ [{suite_callbacks,List}];
+ _Else ->
+ []
+ end,
+ call(fun call_generic/3, Config ++ Info, [pre_init_per_suite, Mod]);
init_tc(Mod, end_per_suite, Config) ->
call(fun call_generic/3, Config, [pre_end_per_suite, Mod]);
init_tc(Mod, {init_per_group, GroupName, Opts}, Config) ->