diff options
author | Hans Nilsson <[email protected]> | 2016-10-31 10:18:27 +0100 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2016-10-31 10:18:27 +0100 |
commit | ba6202d58f56d1a2b71d1108b39d13d83505c085 (patch) | |
tree | f00cc580a24e9ddded15fe7361bfc6e4007a6dfb /lib/ssh/test/ssh_to_openssh_SUITE.erl | |
parent | a0143c91b4d8f753dd6907fc08fdfb95dcd4cf3d (diff) | |
download | otp-ba6202d58f56d1a2b71d1108b39d13d83505c085.tar.gz otp-ba6202d58f56d1a2b71d1108b39d13d83505c085.tar.bz2 otp-ba6202d58f56d1a2b71d1108b39d13d83505c085.zip |
ssh: skip erlang_server_openssh_client_renegotiate test on non-unix
Diffstat (limited to 'lib/ssh/test/ssh_to_openssh_SUITE.erl')
-rw-r--r-- | lib/ssh/test/ssh_to_openssh_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ssh/test/ssh_to_openssh_SUITE.erl b/lib/ssh/test/ssh_to_openssh_SUITE.erl index f378188b8b..b289327cbd 100644 --- a/lib/ssh/test/ssh_to_openssh_SUITE.erl +++ b/lib/ssh/test/ssh_to_openssh_SUITE.erl @@ -110,7 +110,7 @@ init_per_testcase(erlang_client_openssh_server_publickey_dsa, Config) -> init_per_testcase(erlang_server_openssh_client_renegotiate, Config) -> case os:type() of {unix,_} -> ssh:start(), Config; - Type -> ct:fail("Unsupported test on ~p",[Type]) + Type -> {skip, io_lib:format("Unsupported test on ~p",[Type])} end; init_per_testcase(_TestCase, Config) -> ssh:start(), |