diff options
author | Dan Gudmundsson <[email protected]> | 2013-03-26 11:32:08 +0100 |
---|---|---|
committer | Dan Gudmundsson <[email protected]> | 2013-03-26 11:32:08 +0100 |
commit | 618d8907ece11d07aae5f80126ef20a6d00a9fa7 (patch) | |
tree | e3a11aca279e5ba37a9224e7fa2ca4e850dc1b21 /erts | |
parent | 08037cc37e1bc116c44ee7665f7316b6d0dfecba (diff) | |
parent | 61613acb659553004538ad13ded3d6bf343bf6a7 (diff) | |
download | otp-618d8907ece11d07aae5f80126ef20a6d00a9fa7.tar.gz otp-618d8907ece11d07aae5f80126ef20a6d00a9fa7.tar.bz2 otp-618d8907ece11d07aae5f80126ef20a6d00a9fa7.zip |
Merge branch 'maint'
Diffstat (limited to 'erts')
-rw-r--r-- | erts/test/nt_SUITE.erl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/erts/test/nt_SUITE.erl b/erts/test/nt_SUITE.erl index f9bd15a0ce..7580a7b364 100644 --- a/erts/test/nt_SUITE.erl +++ b/erts/test/nt_SUITE.erl @@ -270,8 +270,11 @@ service_prio(Config) when is_list(Config) -> ?line {ok, OldProcs} = get_current_procs(Config), ?line start_service(Name), ?line {ok, NewProcs} = get_current_procs(Config), + timer:sleep(2000), + ?line {ok, NewProcs2} = get_current_procs(Config), ?line remove_service(Name), ?line Diff = arrived_procs(OldProcs,NewProcs), + io:format("NewProcs ~p~n after sleep~n ~p~n",[Diff, arrived_procs(OldProcs,NewProcs2)]), %% Not really correct, could fail if another heart is %% started at the same time... ?line {value, {"heart.exe",_,"high"}} = |