diff options
author | Dan Gudmundsson <[email protected]> | 2013-02-26 16:01:24 +0100 |
---|---|---|
committer | Dan Gudmundsson <[email protected]> | 2013-02-26 16:01:24 +0100 |
commit | 4a69eb28601d9f1e2e1b129a84f13eeb4aabe89d (patch) | |
tree | a67b85b25feadb4a108f6816376db403525c1b12 /erts | |
parent | 35fb992358a5fbfaedd3af55288386855c948227 (diff) | |
download | otp-4a69eb28601d9f1e2e1b129a84f13eeb4aabe89d.tar.gz otp-4a69eb28601d9f1e2e1b129a84f13eeb4aabe89d.tar.bz2 otp-4a69eb28601d9f1e2e1b129a84f13eeb4aabe89d.zip |
Add debug printouts
Testcase if wobbling
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"}} = |