diff options
author | Björn-Egil Dahlberg <[email protected]> | 2016-04-07 19:12:31 +0200 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2016-04-08 14:53:36 +0200 |
commit | 27217260c7ac21d4e81d7758a43b27ff8ed7cdf0 (patch) | |
tree | d4e7caa78feee7db5fa5a8846501c362a9c93be0 | |
parent | 313e9305fce0843c68bccd70a2c45e37620dafb4 (diff) | |
download | otp-27217260c7ac21d4e81d7758a43b27ff8ed7cdf0.tar.gz otp-27217260c7ac21d4e81d7758a43b27ff8ed7cdf0.tar.bz2 otp-27217260c7ac21d4e81d7758a43b27ff8ed7cdf0.zip |
Let low_prio test run a bit longer
-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 5bb216ff79..789fa7cf06 100644 --- a/erts/emulator/test/process_SUITE.erl +++ b/erts/emulator/test/process_SUITE.erl @@ -1003,7 +1003,7 @@ low_prio_test(Config) when is_list(Config) -> process_flag(trap_exit, true), S = spawn_link(?MODULE, prio_server, [0, 0]), PCs = spawn_prio_clients(S, erlang:system_info(schedulers_online)), - timer:sleep(2000), + ct:sleep({seconds,3}), lists:foreach(fun (P) -> exit(P, kill) end, PCs), S ! exit, receive {'EXIT', S, {A, B}} -> check_prio(A, B) end, |