diff options
author | Björn-Egil Dahlberg <[email protected]> | 2013-07-22 13:37:17 +0200 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2013-07-22 13:37:17 +0200 |
commit | 9841993a2329f1c7d2aa1fc4f1fb7c34c91c788a (patch) | |
tree | 49333fc96273baf37dc259b912f0b302b8b1feba /erts/emulator/test/system_profile_SUITE.erl | |
parent | c2a371423621960cfdb49d29bd17e2ae235f7015 (diff) | |
parent | da052b16d47b226eac4c5cf421be3f07aec18386 (diff) | |
download | otp-9841993a2329f1c7d2aa1fc4f1fb7c34c91c788a.tar.gz otp-9841993a2329f1c7d2aa1fc4f1fb7c34c91c788a.tar.bz2 otp-9841993a2329f1c7d2aa1fc4f1fb7c34c91c788a.zip |
Merge branch 'maint'
Diffstat (limited to 'erts/emulator/test/system_profile_SUITE.erl')
-rw-r--r-- | erts/emulator/test/system_profile_SUITE.erl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/erts/emulator/test/system_profile_SUITE.erl b/erts/emulator/test/system_profile_SUITE.erl index ba94a371be..a387c08ef9 100644 --- a/erts/emulator/test/system_profile_SUITE.erl +++ b/erts/emulator/test/system_profile_SUITE.erl @@ -198,7 +198,9 @@ check_multi_scheduling_block(Nodes) -> Pid = start_profiler_process(), undefined = erlang:system_profile(Pid, [scheduler]), {ok, Supervisor} = start_load(Nodes), + wait(600), erlang:system_flag(multi_scheduling, block), + wait(600), erlang:system_flag(multi_scheduling, unblock), {Pid, [scheduler]} = erlang:system_profile(undefined, []), Events = get_profiler_events(), @@ -213,7 +215,6 @@ check_block_system(Nodes) -> Pid = start_profiler_process(), undefined = erlang:system_profile(Pid, [scheduler]), {ok, Supervisor} = start_load(Nodes), - % FIXME: remove wait !! wait(300), undefined = erlang:system_monitor(Dummy, [busy_port]), {Dummy, [busy_port]} = erlang:system_monitor(undefined, []), |