diff options
author | Siri Hansen <[email protected]> | 2012-10-10 12:11:00 +0200 |
---|---|---|
committer | Siri Hansen <[email protected]> | 2012-12-14 11:20:55 +0100 |
commit | 14351577fbc3e560ca36fa888e8988e332e5ad79 (patch) | |
tree | ae8cb94092a6800703f0289fdb01b360a7771f7e /lib/common_test/test/ct_master_SUITE.erl | |
parent | 3f6df2bea5d60264830705f9c663ec7b9286b85f (diff) | |
download | otp-14351577fbc3e560ca36fa888e8988e332e5ad79.tar.gz otp-14351577fbc3e560ca36fa888e8988e332e5ad79.tar.bz2 otp-14351577fbc3e560ca36fa888e8988e332e5ad79.zip |
[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.
Diffstat (limited to 'lib/common_test/test/ct_master_SUITE.erl')
-rw-r--r-- | lib/common_test/test/ct_master_SUITE.erl | 3 |
1 files changed, 3 insertions, 0 deletions
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,[]}}] } |