diff options
author | Hans Nilsson <[email protected]> | 2016-06-07 15:39:44 +0200 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2016-06-09 09:47:08 +0200 |
commit | 8619d3d6cf22ad267a5d902be0ddc768280c92fc (patch) | |
tree | 4b87ee504f5c5a411d2712df71221371971d3b9f /lib/ssh/test/ssh_sftp_SUITE.erl | |
parent | 92457b67f824e569bba84eb62a5eec69140d81e4 (diff) | |
download | otp-8619d3d6cf22ad267a5d902be0ddc768280c92fc.tar.gz otp-8619d3d6cf22ad267a5d902be0ddc768280c92fc.tar.bz2 otp-8619d3d6cf22ad267a5d902be0ddc768280c92fc.zip |
ssh: skip test suites if no crypto lib is installed
Diffstat (limited to 'lib/ssh/test/ssh_sftp_SUITE.erl')
-rw-r--r-- | lib/ssh/test/ssh_sftp_SUITE.erl | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/lib/ssh/test/ssh_sftp_SUITE.erl b/lib/ssh/test/ssh_sftp_SUITE.erl index 19cf6d446e..19ad81e7da 100644 --- a/lib/ssh/test/ssh_sftp_SUITE.erl +++ b/lib/ssh/test/ssh_sftp_SUITE.erl @@ -26,7 +26,7 @@ -include_lib("common_test/include/ct.hrl"). -include_lib("kernel/include/file.hrl"). - +-include("ssh_test_lib.hrl"). % Default timetrap timeout -define(default_timeout, ?t:minutes(1)). @@ -45,10 +45,13 @@ all() -> init_per_suite(Config) -> - ct:log("file:native_name_encoding() = ~p,~nio:getopts() = ~p", - [file:native_name_encoding(),io:getopts()]), - ssh:start(), - Config. + ?CHECK_CRYPTO( + begin + ct:log("file:native_name_encoding() = ~p,~nio:getopts() = ~p", + [file:native_name_encoding(),io:getopts()]), + ssh:start(), + Config + end). end_per_suite(_onfig) -> ssh:stop(). |