diff options
author | John Högberg <john@erlang.org> | 2017-10-25 19:16:45 +0200 |
---|---|---|
committer | John Högberg <john@erlang.org> | 2017-11-30 15:44:37 +0100 |
commit | b5149c7073896f3ddb8c7995b2b0992007a1f0e2 (patch) | |
tree | eb30fa8afbb6f19828fecb4516b73dfdecd994a5 /erts/emulator/test/dirty_bif_SUITE.erl | |
parent | 08901d99137014bd53b999a9fbb0aac893d854e4 (diff) | |
download | erlang-b5149c7073896f3ddb8c7995b2b0992007a1f0e2.tar.gz |
Tighten timings in dirty_*if_SUITE:dirty_scheduler_exit
There doesn't seem to be any science behind the long delays, and
the (newly introduced) dry run forces us to eat them twice, so
they've been shortened to more reasonable values.
Diffstat (limited to 'erts/emulator/test/dirty_bif_SUITE.erl')
-rw-r--r-- | erts/emulator/test/dirty_bif_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/test/dirty_bif_SUITE.erl b/erts/emulator/test/dirty_bif_SUITE.erl index f1279a0bd2..c8f0cbf42d 100644 --- a/erts/emulator/test/dirty_bif_SUITE.erl +++ b/erts/emulator/test/dirty_bif_SUITE.erl @@ -251,7 +251,7 @@ test_dse(0,Pids) -> timer:sleep(100), kill_dse(Pids,[]); test_dse(N,Pids) -> - Pid = spawn_link(fun () -> erts_debug:dirty_io(wait, 5000) end), + Pid = spawn_link(fun () -> erts_debug:dirty_io(wait, 1000) end), test_dse(N-1,[Pid|Pids]). kill_dse([],Killed) -> |