diff options
author | Ingela Anderton Andin <[email protected]> | 2014-02-03 16:22:12 +0100 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2014-02-05 12:19:51 +0100 |
commit | 63b793948b8561a7d541a19ead728bc4e16f0a2d (patch) | |
tree | 11c3af3719fdef6c587cf57ebfff22aeefd3c65b | |
parent | ef97fd2671d966c5b5e005d4a223d5197e5bbf37 (diff) | |
download | otp-63b793948b8561a7d541a19ead728bc4e16f0a2d.tar.gz otp-63b793948b8561a7d541a19ead728bc4e16f0a2d.tar.bz2 otp-63b793948b8561a7d541a19ead728bc4e16f0a2d.zip |
inets: Make test suites independent of each other
-rw-r--r-- | lib/inets/test/httpd_basic_SUITE.erl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/inets/test/httpd_basic_SUITE.erl b/lib/inets/test/httpd_basic_SUITE.erl index fa5c58c509..f75655db1d 100644 --- a/lib/inets/test/httpd_basic_SUITE.erl +++ b/lib/inets/test/httpd_basic_SUITE.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2007-2012. All Rights Reserved. +%% Copyright Ericsson AB 2007-2014. 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 @@ -65,7 +65,8 @@ end_per_group(_GroupName, Config) -> init_per_suite(Config) -> tsp("init_per_suite -> entry with" "~n Config: ~p", [Config]), - ok = inets:start(), + inets_test_lib:stop_apps([inets]), + inets_test_lib:start_apps([inets]), PrivDir = ?config(priv_dir, Config), DataDir = ?config(data_dir, Config), |