diff options
author | Lukas Larsson <[email protected]> | 2011-01-24 13:33:13 +0100 |
---|---|---|
committer | Niclas Eklund <[email protected]> | 2011-05-19 14:38:14 +0200 |
commit | 2c0bd506cb99362635ebc0aafae36a95dc0a08b3 (patch) | |
tree | a354114b9ef64e9f71c1c6eac150d181793f07ca /lib/ssh/test/ssh_sftpd_SUITE.erl | |
parent | 694eba4f53b5a1f07b5d37cbe4112fdd1e403a27 (diff) | |
download | otp-2c0bd506cb99362635ebc0aafae36a95dc0a08b3.tar.gz otp-2c0bd506cb99362635ebc0aafae36a95dc0a08b3.tar.bz2 otp-2c0bd506cb99362635ebc0aafae36a95dc0a08b3.zip |
Update init_per_suite so that tests are skipped if crypto/ssh cannot be started.
Diffstat (limited to 'lib/ssh/test/ssh_sftpd_SUITE.erl')
-rw-r--r-- | lib/ssh/test/ssh_sftpd_SUITE.erl | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/lib/ssh/test/ssh_sftpd_SUITE.erl b/lib/ssh/test/ssh_sftpd_SUITE.erl index 263eeefe66..59445135b4 100644 --- a/lib/ssh/test/ssh_sftpd_SUITE.erl +++ b/lib/ssh/test/ssh_sftpd_SUITE.erl @@ -53,9 +53,16 @@ %% variable, but should NOT alter/remove any existing entries. %%-------------------------------------------------------------------- init_per_suite(Config) -> - ssh:stop(), - crypto:start(), - Config. + case {catch ssh:stop(),catch crypto:start()} of + {ok,ok} -> + Config; + {ok,_} -> + {skip,"Could not start ssh!"}; + {_,ok} -> + {skip,"Could not start crypto!"}; + {_,_} -> + {skip,"Could not start crypto and ssh!"} + end. %%-------------------------------------------------------------------- %% Function: end_per_suite(Config) -> _ |