aboutsummaryrefslogtreecommitdiffstats
path: root/lib/kernel/test/interactive_shell_SUITE.erl
diff options
context:
space:
mode:
authorSiri Hansen <[email protected]>2013-06-04 11:06:18 +0200
committerSiri Hansen <[email protected]>2013-06-04 11:06:18 +0200
commita58a2987ab699b452dd1c95dca62147a827e7c7f (patch)
tree3377b88c5e204ab49bf88cabf4d9525955d4349d /lib/kernel/test/interactive_shell_SUITE.erl
parentc2151dec9f14707ccaba72cb065824ee61c064a5 (diff)
parente0e8b6d2c016d62c8ada8664ec4ba1ce291979d0 (diff)
downloadotp-a58a2987ab699b452dd1c95dca62147a827e7c7f.tar.gz
otp-a58a2987ab699b452dd1c95dca62147a827e7c7f.tar.bz2
otp-a58a2987ab699b452dd1c95dca62147a827e7c7f.zip
Merge branch 'siri/cuddle-with-tests' into maint
* siri/cuddle-with-tests: Delete 'icky' dirs and symlinks after kernel tests [ct_netconfc] Improve error printout Fix interactive_shell_SUITE to handle node name with quotes
Diffstat (limited to 'lib/kernel/test/interactive_shell_SUITE.erl')
-rw-r--r--lib/kernel/test/interactive_shell_SUITE.erl6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/kernel/test/interactive_shell_SUITE.erl b/lib/kernel/test/interactive_shell_SUITE.erl
index dac021c6c6..d7d9434b1f 100644
--- a/lib/kernel/test/interactive_shell_SUITE.erl
+++ b/lib/kernel/test/interactive_shell_SUITE.erl
@@ -211,7 +211,7 @@ job_control_remote(Config) when is_list(Config) ->
{sleep,timeout(short)},
{putline,""},
{getline," -->"},
- {putline,"r "++MyNode},
+ {putline,"r '"++MyNode++"'"},
{putline,"c"},
{putline_raw,""},
{getline,"Eshell"},
@@ -265,7 +265,7 @@ job_control_remote_noshell(Config) when is_list(Config) ->
{sleep,timeout(short)},
{putline,""},
{getline," -->"},
- {putline,"r "++NSNodeStr},
+ {putline,"r '"++NSNodeStr++"'"},
{putline,"c"},
{putline_raw,""},
{getline,"Eshell"},
@@ -721,4 +721,4 @@ get_default_shell() ->
end.
atom2list(A) ->
- lists:flatten(io_lib:format("~w", [A])).
+ lists:flatten(io_lib:format("~s", [A])).