diff options
author | Hans Nilsson <[email protected]> | 2019-01-18 12:30:54 +0100 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2019-01-25 18:04:08 +0100 |
commit | dd331b351c1891cc4cf4c134f8982f7cef264d1f (patch) | |
tree | f31128ca1b3df6159d4cf5323e1dcc5679373c80 /lib/ssh | |
parent | 9b0256865cf2b469311c6a4d56c8233df38b5825 (diff) | |
download | otp-dd331b351c1891cc4cf4c134f8982f7cef264d1f.tar.gz otp-dd331b351c1891cc4cf4c134f8982f7cef264d1f.tar.bz2 otp-dd331b351c1891cc4cf4c134f8982f7cef264d1f.zip |
ssh: Change unit in measurements
Diffstat (limited to 'lib/ssh')
-rw-r--r-- | lib/ssh/test/ssh_bench_SUITE.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ssh/test/ssh_bench_SUITE.erl b/lib/ssh/test/ssh_bench_SUITE.erl index 5d8ea240bb..62a10c8c4b 100644 --- a/lib/ssh/test/ssh_bench_SUITE.erl +++ b/lib/ssh/test/ssh_bench_SUITE.erl @@ -113,7 +113,7 @@ connect(Config) -> measure_connect(Config, [{preferred_algorithms,PrefAlgs}])}, {suite, ?MODULE}, - {name, mk_name(["Connect erlc erld ",KexAlg," [connects/sec]"])} + {name, mk_name(["Connect erlc erld ",KexAlg," [connects per sec]"])} ]) end, KexAlgs). @@ -224,7 +224,7 @@ connect_measure(Port, Cipher, Mac, Data, Options) -> report([{value, 1000000 / median(Times)}, % Time in µs {suite, ?MODULE}, - {name, mk_name(["Transfer ",Cipher,"/",Mac," [Mbyte/s]"])}]). + {name, mk_name(["Transfer ",Cipher,"/",Mac," [Mbyte per sec]"])}]). send_wait_acc(C, Ch, Data) -> ssh_connection:send(C, Ch, Data), |