diff options
| author | Björn-Egil Dahlberg <[email protected]> | 2012-10-08 16:16:08 +0200 | 
|---|---|---|
| committer | Björn-Egil Dahlberg <[email protected]> | 2012-10-08 16:16:08 +0200 | 
| commit | a617af92131c6a53b45e2ed4c10412e2770fdb3b (patch) | |
| tree | 2414193dcd6c3098f3584b106f51108e5dd4b789 /lib | |
| parent | ab2a31421b168e6755b1764d4f235add3ebac446 (diff) | |
| parent | 51f6f558d5cfea59c5fd81d563d944566d14c364 (diff) | |
| download | otp-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')
| -rw-r--r-- | lib/inets/test/ftp_suite_lib.erl | 1 | ||||
| -rw-r--r-- | lib/inets/test/httpc_SUITE.erl | 2 | ||||
| -rw-r--r-- | lib/inets/test/httpc_cookie_SUITE.erl | 3 | ||||
| -rw-r--r-- | lib/inets/test/httpd_SUITE.erl | 18 | ||||
| -rw-r--r-- | lib/inets/test/inets_SUITE.erl | 7 | ||||
| -rw-r--r-- | lib/inets/test/inets_sup_SUITE.erl | 6 | 
6 files changed, 2 insertions, 35 deletions
diff --git a/lib/inets/test/ftp_suite_lib.erl b/lib/inets/test/ftp_suite_lib.erl index ffb58c91b6..211c9b5bee 100644 --- a/lib/inets/test/ftp_suite_lib.erl +++ b/lib/inets/test/ftp_suite_lib.erl @@ -206,7 +206,6 @@ init_per_testcase(Case, Config)  init_per_testcase(Case, Config)  ->      put(ftp_testcase, Case),  -    inets:enable_trace(max, io, ftpc),      do_init_per_testcase(Case, Config).  do_init_per_testcase(Case, Config)   diff --git a/lib/inets/test/httpc_SUITE.erl b/lib/inets/test/httpc_SUITE.erl index cb81d2cc5e..644b01120c 100644 --- a/lib/inets/test/httpc_SUITE.erl +++ b/lib/inets/test/httpc_SUITE.erl @@ -337,7 +337,6 @@ init_per_testcase(Case, Timeout, Config) ->      %% so this value will be overwritten (see "ipv6_" below).      %% </IPv6> -    inets:enable_trace(max, io, httpc),      %% inets:enable_trace(max, io, all),      %% snmp:set_trace([gen_tcp]),      tsp("init_per_testcase(~w) -> done when" @@ -381,7 +380,6 @@ end_per_testcase(http_save_to_file = Case, Config) ->  end_per_testcase(Case, Config) ->      io:format(user, "~n~n*** END ~w:~w ***~n~n",   	      [?MODULE, Case]), -    dbg:stop(), % ?      case atom_to_list(Case) of  	"ipv6_" ++ _Rest ->  	    tsp("end_per_testcase(~w) -> stop ssl", [Case]), diff --git a/lib/inets/test/httpc_cookie_SUITE.erl b/lib/inets/test/httpc_cookie_SUITE.erl index 93dbc270c5..3862bf7a20 100644 --- a/lib/inets/test/httpc_cookie_SUITE.erl +++ b/lib/inets/test/httpc_cookie_SUITE.erl @@ -276,8 +276,6 @@ secure_cookie(Config) when is_list(Config) ->      tsp("secure_cookie -> entry with"  	"~n   Config: ~p", [Config]), -    inets:enable_trace(max, io, httpc), -      %% httpc:reset_cookies(),       tsp("secure_cookie -> Cookies 1: ~p", [httpc:which_cookies()]), @@ -309,7 +307,6 @@ secure_cookie(Config) when is_list(Config) ->      tsp("secure_cookie -> Cookies 4: ~p", [httpc:which_cookies()]), -    inets:disable_trace(),      tsp("secure_cookie -> done"),      ok. diff --git a/lib/inets/test/httpd_SUITE.erl b/lib/inets/test/httpd_SUITE.erl index 58f7d4fa25..592469a12f 100644 --- a/lib/inets/test/httpd_SUITE.erl +++ b/lib/inets/test/httpd_SUITE.erl @@ -530,24 +530,10 @@ init_per_testcase3(Case, Config) ->      application:stop(inets),      application:stop(ssl),      cleanup_mnesia(), - -    %% Set trace level -    case lists:reverse(atom_to_list(Case)) of -	"tset_emit" ++ _Rest -> % test-cases ending with time_test -	    tsp("init_per_testcase3(~w) -> disabling trace", [Case]), -	    inets:disable_trace(); -	_ -> -	    tsp("init_per_testcase3(~w) -> enabling trace", [Case]), -	    %% TraceLevel = 70,  -	    TraceLevel = max,  -	    TraceDest  = io,  -	    inets:enable_trace(TraceLevel, TraceDest, httpd) -    end, -	     +       %% Start initialization      tsp("init_per_testcase3(~w) -> start init", [Case]), -     - +       Dog = test_server:timetrap(inets_test_lib:minutes(10)),      NewConfig = lists:keydelete(watchdog, 1, Config),      TcTopDir = ?config(tc_top_dir, Config), 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(), diff --git a/lib/inets/test/inets_sup_SUITE.erl b/lib/inets/test/inets_sup_SUITE.erl index 1d262a2739..65f0f0e09a 100644 --- a/lib/inets/test/inets_sup_SUITE.erl +++ b/lib/inets/test/inets_sup_SUITE.erl @@ -226,8 +226,6 @@ ftpc_worker(doc) ->  ftpc_worker(suite) ->      [];  ftpc_worker(Config) when is_list(Config) -> -    inets:disable_trace(), -    inets:enable_trace(max, io, ftpc),       [] = supervisor:which_children(ftp_sup),      try  	begin @@ -239,20 +237,16 @@ ftpc_worker(Config) when is_list(Config) ->  			    inets:stop(ftpc, Pid),   			    test_server:sleep(5000),  			    [] = supervisor:which_children(ftp_sup), -			    inets:disable_trace(),  			    ok;  			Children -> -			    inets:disable_trace(),  			    exit({unexpected_children, Children})  		    end;  		_ -> -		    inets:disable_trace(),  		    {skip, "Unable to reach test FTP server"}  	    end  	end      catch  	throw:{error, not_found} -> -	    inets:disable_trace(),  	    {skip, "No available FTP servers"}      end.  | 
