diff options
author | Björn-Egil Dahlberg <[email protected]> | 2010-11-26 14:55:41 +0100 |
---|---|---|
committer | Niclas Eklund <[email protected]> | 2011-05-19 14:38:15 +0200 |
commit | bafd9b83ef0e7b2ca40c43981eeb6fe8229804ea (patch) | |
tree | 7a767a3e37ede77ee9fd5bae5bef0e168939baf5 /lib/ssh/test/ssh_to_openssh_SUITE.erl | |
parent | 2c0bd506cb99362635ebc0aafae36a95dc0a08b3 (diff) | |
download | otp-bafd9b83ef0e7b2ca40c43981eeb6fe8229804ea.tar.gz otp-bafd9b83ef0e7b2ca40c43981eeb6fe8229804ea.tar.bz2 otp-bafd9b83ef0e7b2ca40c43981eeb6fe8229804ea.zip |
Add test suite for ssh
Diffstat (limited to 'lib/ssh/test/ssh_to_openssh_SUITE.erl')
-rw-r--r-- | lib/ssh/test/ssh_to_openssh_SUITE.erl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/ssh/test/ssh_to_openssh_SUITE.erl b/lib/ssh/test/ssh_to_openssh_SUITE.erl index 69a57aad1b..0c15c067a8 100644 --- a/lib/ssh/test/ssh_to_openssh_SUITE.erl +++ b/lib/ssh/test/ssh_to_openssh_SUITE.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2008-2010. All Rights Reserved. +%% Copyright Ericsson AB 2008-2011. All Rights Reserved. %% %% The contents of this file are subject to the Erlang Public License, %% Version 1.1, (the "License"); you may not use this file except in @@ -96,7 +96,8 @@ end_per_testcase(_TestCase, _Config) -> %%-------------------------------------------------------------------- all() -> case os:find_executable("ssh") of - false -> {skip, "openSSH not installed on host"}; + false -> + {skip, "openSSH not installed on host"}; _ -> [erlang_shell_client_openssh_server, erlang_client_openssh_server_exec, @@ -119,7 +120,6 @@ init_per_group(_GroupName, Config) -> end_per_group(_GroupName, Config) -> Config. - %% TEST cases starts here. %%-------------------------------------------------------------------- erlang_shell_client_openssh_server(doc) -> |