diff options
author | Hans Nilsson <[email protected]> | 2014-09-23 17:48:39 +0200 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2014-09-25 15:36:09 +0200 |
commit | 8ff6dc862d330c62ab520d03e8a26174b4350424 (patch) | |
tree | 604a41df9f0e729840732b8f7a587ab2fc3e8ac0 /lib/ssh/test/ssh_test_lib.erl | |
parent | 743ed31108ee555db18d9833186865e85e34333e (diff) | |
download | otp-8ff6dc862d330c62ab520d03e8a26174b4350424.tar.gz otp-8ff6dc862d330c62ab520d03e8a26174b4350424.tar.bz2 otp-8ff6dc862d330c62ab520d03e8a26174b4350424.zip |
ssh: Fixed parallel_login bug that made all logins serial
Diffstat (limited to 'lib/ssh/test/ssh_test_lib.erl')
-rw-r--r-- | lib/ssh/test/ssh_test_lib.erl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/ssh/test/ssh_test_lib.erl b/lib/ssh/test/ssh_test_lib.erl index 00c25bf394..b8abf5e80e 100644 --- a/lib/ssh/test/ssh_test_lib.erl +++ b/lib/ssh/test/ssh_test_lib.erl @@ -113,6 +113,9 @@ io_request({put_chars, Chars}, TestCase, _, _, Buff) -> io_request({put_chars, unicode, Chars}, TestCase, _, _, Buff) when is_binary(Chars) -> reply(TestCase, Chars), {ok, ok, Buff}; +io_request({put_chars, unicode, io_lib, format, [Fmt,Args]}, TestCase, _, _, Buff) -> + reply(TestCase, io_lib:format(Fmt,Args)), + {ok, ok, Buff}; io_request({put_chars, Enc, Chars}, TestCase, _, _, Buff) -> reply(TestCase, unicode:characters_to_binary(Chars,Enc,latin1)), {ok, ok, Buff}; |