aboutsummaryrefslogtreecommitdiffstats
path: root/lib/inets
diff options
context:
space:
mode:
authorIngela Anderton Andin <[email protected]>2014-02-03 16:22:12 +0100
committerIngela Anderton Andin <[email protected]>2014-03-18 14:22:01 +0100
commit2562f9e15459a5d0152adfcce36ab632cc8e8afd (patch)
tree29fc9260fc79e1eadbd93c63af320e685cd2a80a /lib/inets
parentec8e9a96bd0d0148df5008b0665da0725e5b3f92 (diff)
downloadotp-2562f9e15459a5d0152adfcce36ab632cc8e8afd.tar.gz
otp-2562f9e15459a5d0152adfcce36ab632cc8e8afd.tar.bz2
otp-2562f9e15459a5d0152adfcce36ab632cc8e8afd.zip
inets: Make test suites independent of each other
Diffstat (limited to 'lib/inets')
-rw-r--r--lib/inets/test/Makefile2
-rw-r--r--lib/inets/test/httpd_basic_SUITE.erl5
2 files changed, 4 insertions, 3 deletions
diff --git a/lib/inets/test/Makefile b/lib/inets/test/Makefile
index c156b34406..609396273d 100644
--- a/lib/inets/test/Makefile
+++ b/lib/inets/test/Makefile
@@ -1,7 +1,7 @@
#
# %CopyrightBegin%
#
-# Copyright Ericsson AB 1997-2013. All Rights Reserved.
+# Copyright Ericsson AB 1997-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
diff --git a/lib/inets/test/httpd_basic_SUITE.erl b/lib/inets/test/httpd_basic_SUITE.erl
index 2d06f3e70c..fbe65145dc 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),