diff options
author | Hans Bolinder <[email protected]> | 2013-03-12 13:55:55 +0100 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2013-03-18 16:26:35 +0100 |
commit | 21c34f1ccf7045e6786484575e3e68639c42bc50 (patch) | |
tree | 35633e819879a5c2b3ba9c4d507278e44e722adc | |
parent | a85b205cef9053546716777336b0ce6be413bf17 (diff) | |
download | otp-21c34f1ccf7045e6786484575e3e68639c42bc50.tar.gz otp-21c34f1ccf7045e6786484575e3e68639c42bc50.tar.bz2 otp-21c34f1ccf7045e6786484575e3e68639c42bc50.zip |
Fix a test case
interactive_shell_SUITE: nodes names with '-'
-rw-r--r-- | lib/kernel/test/interactive_shell_SUITE.erl | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/lib/kernel/test/interactive_shell_SUITE.erl b/lib/kernel/test/interactive_shell_SUITE.erl index 36e13cec26..dac021c6c6 100644 --- a/lib/kernel/test/interactive_shell_SUITE.erl +++ b/lib/kernel/test/interactive_shell_SUITE.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2007-2012. All Rights Reserved. +%% Copyright Ericsson AB 2007-2013. All Rights Reserved. %% %% The contents of this file are subject to the Erlang Public License, %% Version 1.1, (the "License"); you may not use this file except in @@ -193,7 +193,7 @@ job_control_remote(Config) when is_list(Config) -> {skip,"No new shell found"}; _ -> ?line RNode = create_nodename(), - ?line MyNode = atom_to_list(node()), + ?line MyNode = atom2list(node()), ?line Pid = spawn_link(fun() -> receive die -> ok @@ -254,7 +254,7 @@ job_control_remote_noshell(Config) when is_list(Config) -> end), ?line PidStr = rpc:call(NSNode,erlang,pid_to_list,[Pid]), ?line true = rpc:call(NSNode,erlang,register,[kalaskula,Pid]), - ?line NSNodeStr = atom_to_list(NSNode), + ?line NSNodeStr = atom2list(NSNode), ?line CookieString = lists:flatten( io_lib:format("~w", [erlang:get_cookie()])), @@ -715,7 +715,10 @@ get_default_shell() -> {putline, "whereis(user_drv)."}, {getline, "undefined"}],[]), old - catch E:R -> - ?dbg({E,R}), + catch _E:_R -> + ?dbg({_E,_R}), new end. + +atom2list(A) -> + lists:flatten(io_lib:format("~w", [A])). |