aboutsummaryrefslogtreecommitdiffstats
path: root/lib/common_test/src
diff options
context:
space:
mode:
authorSiri Hansen <[email protected]>2019-06-04 14:37:12 +0200
committerSiri Hansen <[email protected]>2019-06-04 14:37:12 +0200
commitfe8521bf93994a1d0d2021099f3a99473e1d3731 (patch)
tree2e54a8e6e0363d93511d2c603b5c82da24741276 /lib/common_test/src
parent22a55c40254cfee683e070167794fab632bef865 (diff)
downloadotp-fe8521bf93994a1d0d2021099f3a99473e1d3731.tar.gz
otp-fe8521bf93994a1d0d2021099f3a99473e1d3731.tar.bz2
otp-fe8521bf93994a1d0d2021099f3a99473e1d3731.zip
[ct] Fix bug where Hook:terminate/1 was called before Hook:init/2
This problem was introduced with commit acd87425acf7705328b01aa8f0a804207ffe4790, when the new hook function post_groups/2 and post_all/3 were added.
Diffstat (limited to 'lib/common_test/src')
-rw-r--r--lib/common_test/src/ct_hooks.erl11
1 files changed, 10 insertions, 1 deletions
diff --git a/lib/common_test/src/ct_hooks.erl b/lib/common_test/src/ct_hooks.erl
index 903710963c..dc189c3000 100644
--- a/lib/common_test/src/ct_hooks.erl
+++ b/lib/common_test/src/ct_hooks.erl
@@ -373,7 +373,16 @@ terminate_if_scope_ends(HookId, Function0, Hooks) ->
Function = strip_config(Function0),
case lists:keyfind(HookId, #ct_hook_config.id, Hooks) of
#ct_hook_config{ id = HookId, scope = Function} = Hook ->
- terminate([Hook]),
+ case Function of
+ [AllOrGroup,_] when AllOrGroup=:=post_all;
+ AllOrGroup=:=post_groups ->
+ %% The scope only contains one function (post_all
+ %% or post_groups), and init has not been called,
+ %% so skip terminate as well.
+ ok;
+ _ ->
+ terminate([Hook])
+ end,
lists:keydelete(HookId, #ct_hook_config.id, Hooks);
_ ->
Hooks