aboutsummaryrefslogtreecommitdiffstats
path: root/lib/common_test/test/ct_telnet_SUITE_data
diff options
context:
space:
mode:
authorPeter Andersson <[email protected]>2014-01-28 19:01:07 +0100
committerPeter Andersson <[email protected]>2014-01-28 19:04:05 +0100
commitc5079569ec2c6248f702b15c0e95def24411ca3c (patch)
tree079676231cc56b295f57dc48947fc8502f08e79d /lib/common_test/test/ct_telnet_SUITE_data
parent95a574b3620ec3d7420c7807b2d84f4602512229 (diff)
downloadotp-c5079569ec2c6248f702b15c0e95def24411ca3c.tar.gz
otp-c5079569ec2c6248f702b15c0e95def24411ca3c.tar.bz2
otp-c5079569ec2c6248f702b15c0e95def24411ca3c.zip
Fix remaining problems using raw telnet logging for parallel test cases
Diffstat (limited to 'lib/common_test/test/ct_telnet_SUITE_data')
-rw-r--r--lib/common_test/test/ct_telnet_SUITE_data/ct_telnet_basic_SUITE.erl11
1 files changed, 1 insertions, 10 deletions
diff --git a/lib/common_test/test/ct_telnet_SUITE_data/ct_telnet_basic_SUITE.erl b/lib/common_test/test/ct_telnet_SUITE_data/ct_telnet_basic_SUITE.erl
index dbb9e9449a..80616af064 100644
--- a/lib/common_test/test/ct_telnet_SUITE_data/ct_telnet_basic_SUITE.erl
+++ b/lib/common_test/test/ct_telnet_SUITE_data/ct_telnet_basic_SUITE.erl
@@ -19,8 +19,7 @@ suite() -> [
].
operations() ->
- [start_stop
-, send_and_get, expect, already_closed,
+ [start_stop, send_and_get, expect, already_closed,
cmd, sendf, close_wrong_type].
mult_case(_Case, 0) ->
@@ -61,10 +60,6 @@ init_per_testcase(Case, Config) when (Case == sessions1) or
(Case == sessions2) or
(Case == sessions3) or
(Case == sessions4) ->
-
- %%! --- Tue Jan 28 13:46:47 2014 --- peppe was here!
- io:format(user, ">>> ~p STARTING~n", [Case]),
-
N = lists:last(atom_to_list(Case))-48,
ct:log("Using connection ~w for session ~w on ~w",
[?conn_name(N),N,self()]),
@@ -76,10 +71,6 @@ init_per_testcase(Case, Config) ->
Config.
end_per_testcase(_Case, _) ->
-
- %%! --- Tue Jan 28 13:46:47 2014 --- peppe was here!
- io:format(user, "<<< ~p ENDING~n", [_Case]),
-
ok.
%%%-----------------------------------------------------------------