diff options
author | Siri Hansen <[email protected]> | 2012-10-12 15:58:42 +0200 |
---|---|---|
committer | Siri Hansen <[email protected]> | 2012-10-30 11:18:40 +0100 |
commit | deaae761fb03ba2a49ac6ed2459acf577698d57d (patch) | |
tree | 2e153e1985079e1edc7e55834807cbc428466093 /lib/test_server/test | |
parent | 8179e41007922c059b8f9441f563edf694b8b315 (diff) | |
download | otp-deaae761fb03ba2a49ac6ed2459acf577698d57d.tar.gz otp-deaae761fb03ba2a49ac6ed2459acf577698d57d.tar.bz2 otp-deaae761fb03ba2a49ac6ed2459acf577698d57d.zip |
[test_server] Don't stop cover after test is finished
This commit removes all calls to cover:stop from test_server. This is
to avoid crash in some processes due to old code.
The correction shall be further refined for general use. There will,
for instance, be an option to turn off cover:stop/0 after completed
test run, so the default behaviour is backwards compatible.
Diffstat (limited to 'lib/test_server/test')
-rw-r--r-- | lib/test_server/test/test_server_test_lib.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/test_server/test/test_server_test_lib.erl b/lib/test_server/test/test_server_test_lib.erl index 8a808c5360..0dabc17173 100644 --- a/lib/test_server/test/test_server_test_lib.erl +++ b/lib/test_server/test/test_server_test_lib.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2009-2011. All Rights Reserved. +%% Copyright Ericsson AB 2009-2012. All Rights Reserved. %% %% The contents of this file are subject to the Erlang Public License, %% Version 1.1, (the "License"); you may not use this file except in @@ -83,7 +83,7 @@ start_slave(Config,_Level) -> post_end_per_testcase(_TC, Config, Return, State) -> Node = proplists:get_value(node, Config), - cover:stop(Node), + cover:flush(Node), slave:stop(Node), {Return, State}. |