diff options
author | Dan Gudmundsson <[email protected]> | 2013-10-08 16:34:38 +0200 |
---|---|---|
committer | Dan Gudmundsson <[email protected]> | 2014-01-21 10:56:50 +0100 |
commit | 470478847dcf03a88a517d281a25c3c92e9ae129 (patch) | |
tree | 7e6dba0cced005512bca86c7e8d129cb8af943c6 /lib | |
parent | 39c0803372e168dc4841ca640072eac2dd088e41 (diff) | |
download | otp-470478847dcf03a88a517d281a25c3c92e9ae129.tar.gz otp-470478847dcf03a88a517d281a25c3c92e9ae129.tar.bz2 otp-470478847dcf03a88a517d281a25c3c92e9ae129.zip |
Fix (unicode) debug info in test cases
Diffstat (limited to 'lib')
-rw-r--r-- | lib/snmp/test/snmp_agent_test.erl | 10 | ||||
-rw-r--r-- | lib/ssl/test/ssl_dist_SUITE.erl | 2 |
2 files changed, 6 insertions, 6 deletions
diff --git a/lib/snmp/test/snmp_agent_test.erl b/lib/snmp/test/snmp_agent_test.erl index 50336fcf6e..89a6ce1253 100644 --- a/lib/snmp/test/snmp_agent_test.erl +++ b/lib/snmp/test/snmp_agent_test.erl @@ -1524,11 +1524,11 @@ app_info(Config) when is_list(Config) -> false -> "undefined" end, - io:format("Root dir: ~s~n" - "SNMP: Application dir: ~s~n" - " Application ver: ~s~n" - "SSL: Application dir: ~s~n" - "CRYPTO: Application dir: ~s~n", + io:format("Root dir: ~ts~n" + "SNMP: Application dir: ~ts~n" + " Application ver: ~ts~n" + "SSL: Application dir: ~ts~n" + "CRYPTO: Application dir: ~ts~n", [code:root_dir(), SnmpDir, AppVsn, SslDir, CryptoDir]), ok. diff --git a/lib/ssl/test/ssl_dist_SUITE.erl b/lib/ssl/test/ssl_dist_SUITE.erl index d3b523ca8c..1a1b2af8d4 100644 --- a/lib/ssl/test/ssl_dist_SUITE.erl +++ b/lib/ssl/test/ssl_dist_SUITE.erl @@ -324,7 +324,7 @@ start_ssl_node_raw(Name, Args) -> [binary, {packet, 4}, {active, false}]), {ok, ListenPort} = inet:port(LSock), CmdLine = mk_node_cmdline(ListenPort, Name, Args), - ?t:format("Attempting to start ssl node ~s: ~s~n", [Name, CmdLine]), + ?t:format("Attempting to start ssl node ~ts: ~ts~n", [Name, CmdLine]), case open_port({spawn, CmdLine}, []) of Port when is_port(Port) -> unlink(Port), |