diff options
author | Hans Nilsson <[email protected]> | 2017-01-19 15:10:58 +0100 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2017-02-01 13:12:06 +0100 |
commit | 666f78baa02345058e71021b1560c42c5bb1aff5 (patch) | |
tree | 1b95eb259ef2a44b867f60db2dff2b5ffba71f47 /lib/ssh/test/ssh_trpt_test_lib.erl | |
parent | d89206ccb3df4fc4fff4549f561085611febb22a (diff) | |
download | otp-666f78baa02345058e71021b1560c42c5bb1aff5.tar.gz otp-666f78baa02345058e71021b1560c42c5bb1aff5.tar.bz2 otp-666f78baa02345058e71021b1560c42c5bb1aff5.zip |
ssh: update tests for removed algorithms
Diffstat (limited to 'lib/ssh/test/ssh_trpt_test_lib.erl')
-rw-r--r-- | lib/ssh/test/ssh_trpt_test_lib.erl | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/ssh/test/ssh_trpt_test_lib.erl b/lib/ssh/test/ssh_trpt_test_lib.erl index bc86000d81..0fa0f0c0e4 100644 --- a/lib/ssh/test/ssh_trpt_test_lib.erl +++ b/lib/ssh/test/ssh_trpt_test_lib.erl @@ -93,7 +93,10 @@ exec(Op, S0=#s{}) -> exit:Exit -> report_trace(exit, Exit, S1), - exit(Exit) + exit(Exit); + Cls:Err -> + ct:pal("Class=~p, Error=~p", [Cls,Err]), + error("fooooooO") end; exec(Op, {ok,S=#s{}}) -> exec(Op, S); exec(_, Error) -> Error. |