aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ssl/test
diff options
context:
space:
mode:
authorRaimo Niskanen <[email protected]>2019-07-11 17:23:24 +0200
committerRaimo Niskanen <[email protected]>2019-07-11 17:23:24 +0200
commit44f8ac5b1c7f77ef84e8ce707d21b6f53f945d19 (patch)
tree21f5faef6cf05d5e949c67a697ab40b921be3c01 /lib/ssl/test
parent220eeb3670e536b55c8e6812de86481cedd83bfe (diff)
downloadotp-44f8ac5b1c7f77ef84e8ce707d21b6f53f945d19.tar.gz
otp-44f8ac5b1c7f77ef84e8ce707d21b6f53f945d19.tar.bz2
otp-44f8ac5b1c7f77ef84e8ce707d21b6f53f945d19.zip
Fix leaking SSL node
Diffstat (limited to 'lib/ssl/test')
-rw-r--r--lib/ssl/test/ssl_dist_SUITE.erl4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/ssl/test/ssl_dist_SUITE.erl b/lib/ssl/test/ssl_dist_SUITE.erl
index 003e1fc448..7cfb2ac0c5 100644
--- a/lib/ssl/test/ssl_dist_SUITE.erl
+++ b/lib/ssl/test/ssl_dist_SUITE.erl
@@ -1,7 +1,7 @@
%%
%% %CopyrightBegin%
%%
-%% Copyright Ericsson AB 2007-2018. All Rights Reserved.
+%% Copyright Ericsson AB 2007-2019. All Rights Reserved.
%%
%% Licensed under the Apache License, Version 2.0 (the "License");
%% you may not use this file except in compliance with the License.
@@ -311,9 +311,11 @@ listen_port_options(Config) when is_list(Config) ->
catch
_:Reason ->
stop_ssl_node(NH2),
+ stop_ssl_node(NH1),
ct:fail(Reason)
end,
stop_ssl_node(NH2),
+ stop_ssl_node(NH1),
success(Config).
%%--------------------------------------------------------------------