diff options
author | Hans Nilsson <[email protected]> | 2017-04-07 15:16:56 +0200 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2017-04-07 15:16:56 +0200 |
commit | 3a29920a05cedee8c1f7501ee7b1aa22e068efed (patch) | |
tree | b9d7c89af83a12dbccc010e67c1f2472a1a8f8bf /lib/ssh/test/ssh_bench_SUITE.erl | |
parent | 90aacace4bdb1c883c3829bc66c1c616a81943d9 (diff) | |
parent | b89f06569ee24011a8535c57d6a82e336afeb5bf (diff) | |
download | otp-3a29920a05cedee8c1f7501ee7b1aa22e068efed.tar.gz otp-3a29920a05cedee8c1f7501ee7b1aa22e068efed.tar.bz2 otp-3a29920a05cedee8c1f7501ee7b1aa22e068efed.zip |
Merge branch 'hans/ssh/supervisors/OTP-14267'
Diffstat (limited to 'lib/ssh/test/ssh_bench_SUITE.erl')
-rw-r--r-- | lib/ssh/test/ssh_bench_SUITE.erl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/ssh/test/ssh_bench_SUITE.erl b/lib/ssh/test/ssh_bench_SUITE.erl index ac52bb7e28..317e50ed1d 100644 --- a/lib/ssh/test/ssh_bench_SUITE.erl +++ b/lib/ssh/test/ssh_bench_SUITE.erl @@ -98,7 +98,7 @@ end_per_testcase(_Func, _Conf) -> connect(Config) -> KexAlgs = proplists:get_value(kex, ssh:default_algorithms()), - ct:pal("KexAlgs = ~p",[KexAlgs]), + ct:log("KexAlgs = ~p",[KexAlgs]), lists:foreach( fun(KexAlg) -> PrefAlgs = preferred_algorithms(KexAlg), @@ -242,11 +242,11 @@ median(Data) when is_list(Data) -> 1 -> lists:nth(N div 2 + 1, SortedData) end, - ct:pal("median(~p) = ~p",[SortedData,Median]), + ct:log("median(~p) = ~p",[SortedData,Median]), Median. report(Data) -> - ct:pal("EventData = ~p",[Data]), + ct:log("EventData = ~p",[Data]), ct_event:notify(#event{name = benchmark_data, data = Data}). |