diff options
author | Peter Andersson <[email protected]> | 2012-09-12 16:44:32 +0200 |
---|---|---|
committer | Peter Andersson <[email protected]> | 2012-09-12 16:44:32 +0200 |
commit | 29357da654450954af1b6ad8492a05b055031a25 (patch) | |
tree | 47ff45a04c5ac95ace49438b549a83467788f02b /lib/common_test/src/ct.erl | |
parent | 1c0608f29558697ec9521467a5f6e632f94a302d (diff) | |
parent | d2258a88c708762083572faaaaf3ea3304526f56 (diff) | |
download | otp-29357da654450954af1b6ad8492a05b055031a25.tar.gz otp-29357da654450954af1b6ad8492a05b055031a25.tar.bz2 otp-29357da654450954af1b6ad8492a05b055031a25.zip |
Merge branch 'maint-r15' into maint
Diffstat (limited to 'lib/common_test/src/ct.erl')
-rw-r--r-- | lib/common_test/src/ct.erl | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/common_test/src/ct.erl b/lib/common_test/src/ct.erl index 49b51c9207..5014309c0f 100644 --- a/lib/common_test/src/ct.erl +++ b/lib/common_test/src/ct.erl @@ -274,7 +274,8 @@ step(TestDir,Suite,Case,Opts) -> %%% <c>> ct_telnet:cmd(unix_telnet, "ls .").</c><br/> %%% <c>{ok,["ls","file1 ...",...]}</c></p> start_interactive() -> - ct_util:start(interactive). + ct_util:start(interactive), + ok. %%%----------------------------------------------------------------- %%% @spec stop_interactive() -> ok @@ -282,7 +283,8 @@ start_interactive() -> %%% @doc Exit the interactive mode. %%% @see start_interactive/0 stop_interactive() -> - ct_util:stop(normal). + ct_util:stop(normal), + ok. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%% MISC INTERFACE |