diff options
author | Lukas Larsson <[email protected]> | 2012-03-09 11:46:57 +0100 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2012-03-09 11:46:57 +0100 |
commit | 61ebe50adc2bee5667bc9eef6e560cdb72114509 (patch) | |
tree | 2ee4d84570785d8c6dbd0b98800fa8205e42a195 /erts/test | |
parent | 38972afbf2ad77e299ffbd918d57385bd3cc6cce (diff) | |
parent | bcfc98b5a1a236c0cb5d5f06c16ed762e416e6e0 (diff) | |
download | otp-61ebe50adc2bee5667bc9eef6e560cdb72114509.tar.gz otp-61ebe50adc2bee5667bc9eef6e560cdb72114509.tar.bz2 otp-61ebe50adc2bee5667bc9eef6e560cdb72114509.zip |
Merge branch 'maint'
* maint:
Add filter for ssh undefined function calls
Diffstat (limited to 'erts/test')
-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 |