diff options
author | Hans Nilsson <[email protected]> | 2015-10-20 14:10:39 +0200 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2015-10-20 14:10:39 +0200 |
commit | 51d3c765b0a681794e364921bce32da8ee0624c0 (patch) | |
tree | ceb25d0ee38b69c227318f768915b2331fdd179a /lib/ssh/test/ssh_trpt_test_lib.erl | |
parent | fdae664715f6b64e3f0c61729344bc372b67e1e2 (diff) | |
parent | e595ac154fdc8a6c6958744f5f6019105b637eaf (diff) | |
download | otp-51d3c765b0a681794e364921bce32da8ee0624c0.tar.gz otp-51d3c765b0a681794e364921bce32da8ee0624c0.tar.bz2 otp-51d3c765b0a681794e364921bce32da8ee0624c0.zip |
Merge branch 'hans/ssh/cuddle_tests' into maint
* hans/ssh/cuddle_tests:
ssh: Removed testcases from ssh_to_openssh_SUITE
ssh: test suites probes ssh client
ssh: running ssh_algorithms_SUITE tests in parallel
ssh: wait for subsystem exit in ssh_connection_SUITE:max_channels_option
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 772e50df87..5080b33249 100644 --- a/lib/ssh/test/ssh_trpt_test_lib.erl +++ b/lib/ssh/test/ssh_trpt_test_lib.erl @@ -73,7 +73,10 @@ exec(Op, S0=#s{}) -> op(Op, S1)) of S = #s{} -> - print_traces(S), + case proplists:get_value(silent,S#s.opts) of + true -> ok; + _ -> print_traces(S) + end, {ok,S} catch {fail,Reason,Se} -> |