summaryrefslogtreecommitdiff
path: root/test/src/supervisor2_tests.erl
diff options
context:
space:
mode:
Diffstat (limited to 'test/src/supervisor2_tests.erl')
-rw-r--r--test/src/supervisor2_tests.erl5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/src/supervisor2_tests.erl b/test/src/supervisor2_tests.erl
index 4d362e5b..195211b0 100644
--- a/test/src/supervisor2_tests.erl
+++ b/test/src/supervisor2_tests.erl
@@ -49,7 +49,12 @@ check_shutdown(SigStop, Iterations, ChildCount, SupTimeout) ->
R
end, ok, lists:seq(1, Iterations)),
unlink(Sup),
+ MSupRef = erlang:monitor(process, Sup),
exit(Sup, shutdown),
+ receive
+ {'DOWN', MSupRef, process, Sup, _Reason} ->
+ ok
+ end,
Res.
start_link() ->