diff options
author | Siri Hansen <[email protected]> | 2016-06-28 12:20:02 +0200 |
---|---|---|
committer | Siri Hansen <[email protected]> | 2016-07-08 10:13:08 +0200 |
commit | deb4a4689a65d88a44648138ac160f640a36aa78 (patch) | |
tree | 666da7ce7b9b2e3e9029278b249d86d669746098 | |
parent | 9c8111085ef28b0a5174acca60021ecdca830299 (diff) | |
download | otp-deb4a4689a65d88a44648138ac160f640a36aa78.tar.gz otp-deb4a4689a65d88a44648138ac160f640a36aa78.tar.bz2 otp-deb4a4689a65d88a44648138ac160f640a36aa78.zip |
[ct test] Extent node startup timeouts in netconfc_remote_SUITE
-rw-r--r-- | lib/common_test/test/ct_netconfc_SUITE_data/netconfc_remote_SUITE.erl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/common_test/test/ct_netconfc_SUITE_data/netconfc_remote_SUITE.erl b/lib/common_test/test/ct_netconfc_SUITE_data/netconfc_remote_SUITE.erl index a65275da43..f2580ad8e9 100644 --- a/lib/common_test/test/ct_netconfc_SUITE_data/netconfc_remote_SUITE.erl +++ b/lib/common_test/test/ct_netconfc_SUITE_data/netconfc_remote_SUITE.erl @@ -83,7 +83,9 @@ end_per_suite(Config) -> %% Running the netconf server in a remote node, test that the client %% process terminates if the remote node goes down. remote_crash(Config) -> - {ok,Node} = ct_slave:start(nc_remote_crash), + {ok,Node} = ct_slave:start(nc_remote_crash,[{boot_timeout,15}, + {init_timeout,15}, + {startup_timeout,15}]), Pa = filename:dirname(code:which(?NS)), true = rpc:call(Node,code,add_patha,[Pa]), rpc:call(Node,code,load_file,[crypto]), |