summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIngela Anderton Andin <ingela@erlang.org>2014-02-03 16:22:12 +0100
committerIngela Anderton Andin <ingela@erlang.org>2014-02-05 12:19:51 +0100
commit63b793948b8561a7d541a19ead728bc4e16f0a2d (patch)
tree11c3af3719fdef6c587cf57ebfff22aeefd3c65b
parentef97fd2671d966c5b5e005d4a223d5197e5bbf37 (diff)
downloaderlang-63b793948b8561a7d541a19ead728bc4e16f0a2d.tar.gz
inets: Make test suites independent of each other
-rw-r--r--lib/inets/test/httpd_basic_SUITE.erl5
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),