From 14351577fbc3e560ca36fa888e8988e332e5ad79 Mon Sep 17 00:00:00 2001 From: Siri Hansen Date: Wed, 10 Oct 2012 12:11:00 +0200 Subject: [common_test] Extend timeout values for slave nodes in ct_master_SUITE Some tests in ct_master_SUITE failed on some platforms with boot_timeout when trying to start slave nodes. The default timeout value was 3 seconds, and it is now extended to 10 seconds in these tests. To avoid similar errors with init_timeout and startup_timeout, these are both exteded from 1 second default value to 10 seconds in this test. --- lib/common_test/test/ct_master_SUITE.erl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/common_test/test/ct_master_SUITE.erl b/lib/common_test/test/ct_master_SUITE.erl index 56a343a96f..b89d7d4dc5 100644 --- a/lib/common_test/test/ct_master_SUITE.erl +++ b/lib/common_test/test/ct_master_SUITE.erl @@ -154,6 +154,9 @@ make_spec(DataDir, FileName, NodeNames, Suites, Config) -> {init,NodeName,[ {node_start,[{startup_functions,[]}, {monitor_master,true}, + {boot_timeout,10}, + {init_timeout,10}, + {startup_timeout,10}, {env,Env}]}, {eval,{erlang,nodes,[]}}] } -- cgit v1.2.3