diff options
author | Siri Hansen <[email protected]> | 2013-05-14 11:15:32 +0200 |
---|---|---|
committer | Siri Hansen <[email protected]> | 2013-05-14 11:15:32 +0200 |
commit | e27cf4ac6a9d71fa38ea8c3af2287a817110aedd (patch) | |
tree | fc72dbb72f46f2241eb8da39c8122a1f41d4e6ff /lib/common_test/src/unix_telnet.erl | |
parent | 4d086abb73f7b9af178c966d5fb66012c4ec6612 (diff) | |
download | otp-e27cf4ac6a9d71fa38ea8c3af2287a817110aedd.tar.gz otp-e27cf4ac6a9d71fa38ea8c3af2287a817110aedd.tar.bz2 otp-e27cf4ac6a9d71fa38ea8c3af2287a817110aedd.zip |
[common_test] Backed out wait_for_linebreak option from ct_telnet
Diffstat (limited to 'lib/common_test/src/unix_telnet.erl')
-rw-r--r-- | lib/common_test/src/unix_telnet.erl | 36 |
1 files changed, 5 insertions, 31 deletions
diff --git a/lib/common_test/src/unix_telnet.erl b/lib/common_test/src/unix_telnet.erl index 71df2ab44e..88199b07d0 100644 --- a/lib/common_test/src/unix_telnet.erl +++ b/lib/common_test/src/unix_telnet.erl @@ -94,16 +94,11 @@ connect(Ip,Port,Timeout,KeepAlive,Extra) -> {Username,Password} -> connect1(Ip,Port,Timeout,KeepAlive,Username,Password); Name -> - case not_require_user_and_pass(Name) of - true -> - connect_without_username_and_pass(Ip,Port,Timeout,KeepAlive); - _ -> - case get_username_and_password(Name) of - {ok,{Username,Password}} -> - connect1(Ip,Port,Timeout,KeepAlive,Username,Password); - Error -> - Error - end + case get_username_and_password(Name) of + {ok,{Username,Password}} -> + connect1(Ip,Port,Timeout,KeepAlive,Username,Password); + Error -> + Error end end. @@ -149,27 +144,6 @@ connect1(Ip,Port,Timeout,KeepAlive,Username,Password) -> end_log(), Result. -connect_without_username_and_pass(Ip,Port,Timeout,KeepAlive) -> - start_log("unix_telnet:connect"), - Result = - case ct_telnet_client:open(Ip,Port,Timeout,KeepAlive) of - {ok,Pid} -> - {ok, Pid}; - Error -> - cont_log("Could not open telnet connection\n~p\n",[Error]), - Error - end, - end_log(), - Result. - -not_require_user_and_pass(Name) -> - case ct:get_config({Name, not_require_user_and_pass}) of - undefined -> - false; - _ -> - true - end. - get_username_and_password(Name) -> case ct:get_config({Name,username}) of undefined -> |