diff options
author | Lukas Larsson <[email protected]> | 2012-02-07 15:27:00 +0100 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2012-02-08 15:55:09 +0100 |
commit | 678d4fe4043f86f31b6fd34135f54d675b90e111 (patch) | |
tree | 68a1ed0e88b4fe4b24898c31c4739650d0652638 /erts/test/otp_SUITE.erl | |
parent | 6004ec3e1785913ff0b74054cf614a35c180d54a (diff) | |
download | otp-678d4fe4043f86f31b6fd34135f54d675b90e111.tar.gz otp-678d4fe4043f86f31b6fd34135f54d675b90e111.tar.bz2 otp-678d4fe4043f86f31b6fd34135f54d675b90e111.zip |
Add filter for ssh undefined function calls
If there is no crypto there will be no ssh and thus
alot of undefined functions will appear in common_test.
Diffstat (limited to 'erts/test/otp_SUITE.erl')
-rw-r--r-- | erts/test/otp_SUITE.erl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/erts/test/otp_SUITE.erl b/erts/test/otp_SUITE.erl index 79cd91221f..b34d9a5422 100644 --- a/erts/test/otp_SUITE.erl +++ b/erts/test/otp_SUITE.erl @@ -151,6 +151,9 @@ ssl_crypto_filter(Undef) -> {{error,bad_name},{error,bad_name}} -> filter(fun({_,{ssl,_,_}}) -> false; ({_,{crypto,_,_}}) -> false; + ({_,{ssh,_,_}}) -> false; + ({_,{ssh_connection,_,_}}) -> false; + ({_,{ssh_sftp,_,_}}) -> false; (_) -> true end, Undef); {_,_} -> Undef |