753753-define(START_NODE(NamePre, Timeout),
754754 start_node(?CT_PEER_NAME(NamePre), Timeout)).
755755
756- %% -define(START_NODE(), ?CT_PEER(#{wait_boot => 5000})).
757- %% -define(START_NODE(O), ?CT_PEER(O#{wait_boot => 5000})).
758-
759756
760757%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
761758
@@ -48837,8 +48834,8 @@ tc_which_name() ->
4883748834
4883848835%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4883948836
48840- start_node(Name) ->
48841- start_node(Name, 5000).
48837+ %% start_node(Name) ->
48838+ %% start_node(Name, 5000).
4884248839
4884348840start_node(Name, Timeout) when is_integer(Timeout) andalso (Timeout > 0) ->
4884448841 try ?CT_PEER(#{name => Name, wait_boot => Timeout}) of
@@ -48848,15 +48845,15 @@ start_node(Name, Timeout) when is_integer(Timeout) andalso (Timeout > 0) ->
4884848845 {error, Reason} ->
4884948846 ?SEV_EPRINT("failed starting node ~p (=> SKIP):"
4885048847 "~n ~p", [Name, Reason]),
48851- throw({ skip, Reason} )
48848+ skip( Reason)
4885248849 catch
4885348850 Class:Reason:Stack ->
4885448851 ?SEV_EPRINT("Failed starting node: "
4885548852 "~n Class: ~p"
4885648853 "~n Reason: ~p"
4885748854 "~n Stack: ~p",
4885848855 [Class, Reason, Stack]),
48859- throw({skip, { node_start, Class, Reason} })
48856+ skip({ node_start, Class, Reason})
4886048857 end.
4886148858
4886248859
0 commit comments