aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLukas Larsson <[email protected]>2011-09-21 18:05:49 +0200
committerLukas Larsson <[email protected]>2011-09-29 17:31:28 +0200
commit702505ef8a077b07ec9cb4845bb780d4c68e22ec (patch)
treeb3b532ebad69a5d601867f57420180eaaec14d54
parentf1f8e2ff2c7f53ae9de3c7bb27402f8cc6f8532a (diff)
downloadotp-702505ef8a077b07ec9cb4845bb780d4c68e22ec.tar.gz
otp-702505ef8a077b07ec9cb4845bb780d4c68e22ec.tar.bz2
otp-702505ef8a077b07ec9cb4845bb780d4c68e22ec.zip
Double timeout to make sure debug builds pass
-rw-r--r--erts/emulator/test/distribution_SUITE.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/erts/emulator/test/distribution_SUITE.erl b/erts/emulator/test/distribution_SUITE.erl
index e4af5c00a6..05dbffc819 100644
--- a/erts/emulator/test/distribution_SUITE.erl
+++ b/erts/emulator/test/distribution_SUITE.erl
@@ -331,7 +331,7 @@ receiver2(Num, TotSize) ->
link_to_busy(doc) -> "Test that link/1 to a busy distribution port works.";
link_to_busy(Config) when is_list(Config) ->
- ?line Dog = test_server:timetrap(test_server:seconds(30)),
+ ?line Dog = test_server:timetrap(test_server:seconds(60)),
?line {ok, Node} = start_node(link_to_busy),
?line Recv = spawn(Node, erlang, apply, [fun sink/1, [link_to_busy_sink]]),
@@ -378,7 +378,7 @@ tail_applied_linker(Pid) ->
exit_to_busy(doc) -> "Test that exit/2 to a busy distribution port works.";
exit_to_busy(Config) when is_list(Config) ->
- ?line Dog = test_server:timetrap(test_server:seconds(30)),
+ ?line Dog = test_server:timetrap(test_server:seconds(60)),
?line {ok, Node} = start_node(exit_to_busy),
Tracer = case os:getenv("TRACE_BUSY_DIST_PORT") of