diff options
author | Rickard Green <[email protected]> | 2016-07-25 19:39:33 +0200 |
---|---|---|
committer | Rickard Green <[email protected]> | 2016-08-30 15:19:52 +0200 |
commit | e643c301c1402fb58ccc52f729c6b0b16c5c12e7 (patch) | |
tree | e9c4f8587bbbb604400d93900b9278e94babcb54 /erts/emulator/test | |
parent | 799185848f6557754031269b1232d52420f3bda5 (diff) | |
download | otp-e643c301c1402fb58ccc52f729c6b0b16c5c12e7.tar.gz otp-e643c301c1402fb58ccc52f729c6b0b16c5c12e7.tar.bz2 otp-e643c301c1402fb58ccc52f729c6b0b16c5c12e7.zip |
Adjust process_SUITE:no_priority_inversion2
Diffstat (limited to 'erts/emulator/test')
-rw-r--r-- | erts/emulator/test/process_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/test/process_SUITE.erl b/erts/emulator/test/process_SUITE.erl index dae8990f56..7462c8c593 100644 --- a/erts/emulator/test/process_SUITE.erl +++ b/erts/emulator/test/process_SUITE.erl @@ -2376,7 +2376,7 @@ no_priority_inversion2(Config) when is_list(Config) -> [{priority, max}, monitor, link]) end, lists:seq(1, 2*erlang:system_info(schedulers))), - receive after 500 -> ok end, + receive after 2000 -> ok end, {PL, ML} = spawn_opt(fun () -> tok_loop() end, |