diff options
| author | Hans Bolinder <[email protected]> | 2016-02-22 13:23:04 +0100 | 
|---|---|---|
| committer | Hans Bolinder <[email protected]> | 2016-02-22 13:23:04 +0100 | 
| commit | 8c5f8128fc167d67fbd5d63205f35eade4cc741f (patch) | |
| tree | 5cea83359579da4881e7d839e67c97755eaa4177 /lib/common_test/src | |
| parent | 89d7e21cf4ae988c57c8ef047bfe85127875c70c (diff) | |
| parent | f10621e0cd4321834d072d2c495fc84066f04cd3 (diff) | |
| download | otp-8c5f8128fc167d67fbd5d63205f35eade4cc741f.tar.gz otp-8c5f8128fc167d67fbd5d63205f35eade4cc741f.tar.bz2 otp-8c5f8128fc167d67fbd5d63205f35eade4cc741f.zip | |
Merge branch 'hb/add_dialyzer_suppressions/OTP-12862' into maint
* hb/add_dialyzer_suppressions/OTP-12862:
  Fix a few dialyzer warnings
Diffstat (limited to 'lib/common_test/src')
| -rw-r--r-- | lib/common_test/src/ct_run.erl | 16 | ||||
| -rw-r--r-- | lib/common_test/src/ct_slave.erl | 4 | 
2 files changed, 15 insertions, 5 deletions
| diff --git a/lib/common_test/src/ct_run.erl b/lib/common_test/src/ct_run.erl index 0b646ffd07..b4364b87ff 100644 --- a/lib/common_test/src/ct_run.erl +++ b/lib/common_test/src/ct_run.erl @@ -1,7 +1,7 @@  %%  %% %CopyrightBegin%  %% -%% Copyright Ericsson AB 2004-2014. All Rights Reserved. +%% Copyright Ericsson AB 2004-2016. All Rights Reserved.  %%  %% Licensed under the Apache License, Version 2.0 (the "License");  %% you may not use this file except in compliance with the License. @@ -909,7 +909,7 @@ run_test(StartOpt) when is_tuple(StartOpt) ->      run_test([StartOpt]);  run_test(StartOpts) when is_list(StartOpts) -> -    CTPid = spawn(fun() -> run_test1(StartOpts) end), +    CTPid = spawn(run_test1_fun(StartOpts)),      Ref = monitor(process, CTPid),      receive  	{'DOWN',Ref,process,CTPid,{user_error,Error}} -> @@ -918,6 +918,11 @@ run_test(StartOpts) when is_list(StartOpts) ->  		    Other      end. +-spec run_test1_fun(_) -> fun(() -> no_return()). + +run_test1_fun(StartOpts) -> +    fun() -> run_test1(StartOpts) end. +  run_test1(StartOpts) when is_list(StartOpts) ->      case proplists:get_value(refresh_logs, StartOpts) of  	undefined -> @@ -1369,7 +1374,7 @@ run_dir(Opts = #opts{logdir = LogDir,  %%% @equiv ct:run_testspec/1  %%%-----------------------------------------------------------------  run_testspec(TestSpec) -> -    CTPid = spawn(fun() -> run_testspec1(TestSpec) end), +    CTPid = spawn(run_testspec1_fun(TestSpec)),      Ref = monitor(process, CTPid),      receive  	{'DOWN',Ref,process,CTPid,{user_error,Error}} -> @@ -1378,6 +1383,11 @@ run_testspec(TestSpec) ->  		    Other      end. +-spec run_testspec1_fun(_) -> fun(() -> no_return()). + +run_testspec1_fun(TestSpec) -> +    fun() -> run_testspec1(TestSpec) end. +  run_testspec1(TestSpec) ->      {ok,Cwd} = file:get_cwd(),      io:format("~nCommon Test starting (cwd is ~ts)~n~n", [Cwd]), diff --git a/lib/common_test/src/ct_slave.erl b/lib/common_test/src/ct_slave.erl index 0cd83b9f04..3ad3937548 100644 --- a/lib/common_test/src/ct_slave.erl +++ b/lib/common_test/src/ct_slave.erl @@ -1,7 +1,7 @@  %%--------------------------------------------------------------------  %% %CopyrightBegin%  %% -%% Copyright Ericsson AB 2010-2015. All Rights Reserved. +%% Copyright Ericsson AB 2010-2016. All Rights Reserved.  %%  %% Licensed under the Apache License, Version 2.0 (the "License");  %% you may not use this file except in compliance with the License. @@ -315,7 +315,7 @@ enodename(Host, Node) ->  do_start(Host, Node, Options) ->      ENode = enodename(Host, Node),      Functions = -	lists:concat([[{ct_slave, slave_started, [ENode, self()]}], +	lists:append([[{ct_slave, slave_started, [ENode, self()]}],  		      Options#options.startup_functions,  		      [{ct_slave, slave_ready, [ENode, self()]}]]),      Functions2 = if | 
