diff options
author | Lukas Larsson <[email protected]> | 2011-03-10 11:04:03 +0100 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2011-03-10 11:04:03 +0100 |
commit | cc5885e81da81dc52bd7890ff3612a48d2f4a9f2 (patch) | |
tree | aaccc24182ee30da64c550713140e2503e95b84a /lib/common_test/src | |
parent | 8533b8bcae728783b1c066b9fecb96b1cc2eb03c (diff) | |
parent | 8c45bb73bfba60c5467798928d55ced6648991c1 (diff) | |
download | otp-cc5885e81da81dc52bd7890ff3612a48d2f4a9f2.tar.gz otp-cc5885e81da81dc52bd7890ff3612a48d2f4a9f2.tar.bz2 otp-cc5885e81da81dc52bd7890ff3612a48d2f4a9f2.zip |
Merge branch 'lukas/common_test/suite_callback/OTP-8851' into dev
* lukas/common_test/suite_callback/OTP-8851:
Update init_per_suite to not crash when there is no suite/0
Update links info in ct_hooks to point to the right place
Update ct_hooks to fail gracefully when a hook is entered incorrectly in suite/0
Diffstat (limited to 'lib/common_test/src')
-rw-r--r-- | lib/common_test/src/ct_hooks.erl | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/common_test/src/ct_hooks.erl b/lib/common_test/src/ct_hooks.erl index 77b7566d9e..6f315d4b82 100644 --- a/lib/common_test/src/ct_hooks.erl +++ b/lib/common_test/src/ct_hooks.erl @@ -66,11 +66,13 @@ terminate(Hooks) -> init_tc(ct_framework, _Func, Args) -> Args; init_tc(Mod, init_per_suite, Config) -> - Info = case catch proplists:get_value(ct_hooks, Mod:suite()) of + Info = try proplists:get_value(ct_hooks, Mod:suite(),[]) of List when is_list(List) -> [{ct_hooks,List}]; - _Else -> - [] + CTHook when is_atom(CTHook) -> + [{ct_hooks,[CTHook]}] + catch error:undef -> + [{ct_hooks,[]}] end, call(fun call_generic/3, Config ++ Info, [pre_init_per_suite, Mod]); init_tc(Mod, end_per_suite, Config) -> |