aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorSiri Hansen <[email protected]>2013-12-19 15:54:35 +0100
committerSiri Hansen <[email protected]>2013-12-19 15:54:35 +0100
commitb0702b98e3bde3d34f84027c9384e138478432c1 (patch)
tree8dae89d5c1bbc85fef9148bd84f1b13e22e65c08 /lib
parent7fcde0281c04170595d437dc0480f4cd690c6fde (diff)
parent246db8a1ad32b68aab7a2e1fa353563dfbc1b1f3 (diff)
downloadotp-b0702b98e3bde3d34f84027c9384e138478432c1.tar.gz
otp-b0702b98e3bde3d34f84027c9384e138478432c1.tar.bz2
otp-b0702b98e3bde3d34f84027c9384e138478432c1.zip
Merge branch 'siri/master-cuddle-with-tests'
* siri/master-cuddle-with-tests: [sasl] Fix error printout in release_handler_SUITE to handle unicode path
Diffstat (limited to 'lib')
-rw-r--r--lib/sasl/test/release_handler_SUITE.erl8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/sasl/test/release_handler_SUITE.erl b/lib/sasl/test/release_handler_SUITE.erl
index 5293381af0..a3db2b23db 100644
--- a/lib/sasl/test/release_handler_SUITE.erl
+++ b/lib/sasl/test/release_handler_SUITE.erl
@@ -1793,18 +1793,18 @@ no_dot_erlang(Conf) ->
case os:cmd(Erl ++ Args) of
"DOT_ERLANG_READ" ++ _ -> ok;
Other1 ->
- io:format("Failed: ~s~n",[Erl ++ Args]),
+ io:format("Failed: ~ts~n",[Erl ++ Args]),
io:format("Expected: ~s ++ _~n",["DOT_ERLANG_READ "]),
- io:format("Got: ~s~n",[Other1]),
+ io:format("Got: ~ts~n",[Other1]),
exit(failed_to_start, test_error)
end,
NO_DOT_ERL = " -boot no_dot_erlang",
case os:cmd(Erl ++ NO_DOT_ERL ++ Args) of
"TESTOK" ++ _ -> ok;
Other2 ->
- io:format("Failed: ~s~n",[Erl ++ Args]),
+ io:format("Failed: ~ts~n",[Erl ++ Args]),
io:format("Expected: ~s~n",["TESTOK"]),
- io:format("Got: ~s~n",[Other2]),
+ io:format("Got: ~ts~n",[Other2]),
exit(failed_to_start, no_dot_erlang)
end
after