aboutsummaryrefslogtreecommitdiffstats
path: root/lib/inets/test/inets_SUITE.erl
diff options
context:
space:
mode:
authorBjörn-Egil Dahlberg <[email protected]>2012-10-08 16:16:08 +0200
committerBjörn-Egil Dahlberg <[email protected]>2012-10-08 16:16:08 +0200
commita617af92131c6a53b45e2ed4c10412e2770fdb3b (patch)
tree2414193dcd6c3098f3584b106f51108e5dd4b789 /lib/inets/test/inets_SUITE.erl
parentab2a31421b168e6755b1764d4f235add3ebac446 (diff)
parent51f6f558d5cfea59c5fd81d563d944566d14c364 (diff)
downloadotp-a617af92131c6a53b45e2ed4c10412e2770fdb3b.tar.gz
otp-a617af92131c6a53b45e2ed4c10412e2770fdb3b.tar.bz2
otp-a617af92131c6a53b45e2ed4c10412e2770fdb3b.zip
Merge branch 'egil/inets/remove-tracing-in-tests'
* egil/inets/remove-tracing-in-tests: inets: Remove dbg tracing from testcases
Diffstat (limited to 'lib/inets/test/inets_SUITE.erl')
-rw-r--r--lib/inets/test/inets_SUITE.erl7
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/inets/test/inets_SUITE.erl b/lib/inets/test/inets_SUITE.erl
index 6fa0f44d77..069c68fa1e 100644
--- a/lib/inets/test/inets_SUITE.erl
+++ b/lib/inets/test/inets_SUITE.erl
@@ -363,8 +363,6 @@ start_ftpc(suite) ->
[];
start_ftpc(Config) when is_list(Config) ->
process_flag(trap_exit, true),
- inets:disable_trace(),
- inets:enable_trace(max, io, ftpc),
ok = inets:start(),
try
begin
@@ -393,16 +391,13 @@ start_ftpc(Config) when is_list(Config) ->
tsf(stand_alone_not_shutdown)
end,
ok = inets:stop(),
- inets:disable_trace(),
ok;
_ ->
- inets:disable_trace(),
{skip, "Unable to reach selected FTP server " ++ FtpdHost}
end
end
catch
throw:{error, not_found} ->
- inets:disable_trace(),
{skip, "No available FTP servers"}
end.
@@ -462,8 +457,6 @@ httpd_reload(Config) when is_list(Config) ->
{document_root, PrivDir},
{bind_address, "localhost"}],
- inets:enable_trace(max, io),
-
i("httpd_reload -> start inets"),
ok = inets:start(),