diff options
Diffstat (limited to 'lib/common_test')
| -rw-r--r-- | lib/common_test/include/ct.hrl | 3 | ||||
| -rw-r--r-- | lib/common_test/src/Makefile | 4 | ||||
| -rw-r--r-- | lib/common_test/src/common_test.app.src | 1 | ||||
| -rw-r--r-- | lib/common_test/src/ct_hooks.erl | 2 | ||||
| -rw-r--r-- | lib/common_test/src/ct_line.erl | 266 | ||||
| -rw-r--r-- | lib/common_test/test/ct_error_SUITE.erl | 79 | ||||
| -rw-r--r-- | lib/common_test/test/ct_repeat_1_SUITE.erl | 7 | ||||
| -rw-r--r-- | lib/common_test/test/ct_skip_SUITE.erl | 9 | 
8 files changed, 18 insertions, 353 deletions
| diff --git a/lib/common_test/include/ct.hrl b/lib/common_test/include/ct.hrl index aa1cc832cf..5a77108e1a 100644 --- a/lib/common_test/include/ct.hrl +++ b/lib/common_test/include/ct.hrl @@ -1,7 +1,7 @@  %%  %% %CopyrightBegin%  %% -%% Copyright Ericsson AB 2003-2010. All Rights Reserved. +%% Copyright Ericsson AB 2003-2011. All Rights Reserved.  %%  %% The contents of this file are subject to the Erlang Public License,  %% Version 1.1, (the "License"); you may not use this file except in @@ -18,5 +18,4 @@  %%  -include_lib("test_server/include/test_server.hrl"). --compile({parse_transform,ct_line}). diff --git a/lib/common_test/src/Makefile b/lib/common_test/src/Makefile index 51624fbde7..125aa828fb 100644 --- a/lib/common_test/src/Makefile +++ b/lib/common_test/src/Makefile @@ -40,7 +40,6 @@ RELSYSDIR = $(RELEASE_PATH)/lib/common_test-$(VSN)  # ----------------------------------------------------  MODULES= \ -	ct_line \  	ct \  	ct_logs \  	ct_framework \ @@ -73,6 +72,7 @@ MODULES= \  	cth_log_redirect  TARGET_MODULES= $(MODULES:%=$(EBIN)/%) +BEAM_FILES= $(MODULES:%=$(EBIN)/%.$(EMULATOR))  ERL_FILES= $(MODULES:=.erl)  HRL_FILES = \ @@ -98,7 +98,7 @@ ERL_COMPILE_FLAGS += -pa ../ebin -I../include -I $(ERL_TOP)/lib/snmp/include/ \  # ----------------------------------------------------  TARGET_FILES = \  	$(GEN_ERL_FILES:%.erl=$(EBIN)/%.$(EMULATOR)) \ -	$(MODULES:%=$(EBIN)/%.$(EMULATOR)) \ +	$(BEAM_FILES) \  	$(APP_TARGET) $(APPUP_TARGET)  APP_FILE= common_test.app diff --git a/lib/common_test/src/common_test.app.src b/lib/common_test/src/common_test.app.src index b42173f412..57606c01db 100644 --- a/lib/common_test/src/common_test.app.src +++ b/lib/common_test/src/common_test.app.src @@ -25,7 +25,6 @@  	     ct_framework,  	     ct_ftp,  	     ct_gen_conn, -	     ct_line,  	     ct_logs,  	     ct_make,  	     ct_master, diff --git a/lib/common_test/src/ct_hooks.erl b/lib/common_test/src/ct_hooks.erl index 886195aae5..ffafc582cf 100644 --- a/lib/common_test/src/ct_hooks.erl +++ b/lib/common_test/src/ct_hooks.erl @@ -354,7 +354,7 @@ catch_apply(M,F,A, Default) ->      catch error:Reason ->  	    case erlang:get_stacktrace() of              %% Return the default if it was the CTH module which did not have the function. -		[{M,F,A}|_] when Reason == undef -> +		[{M,F,A,_}|_] when Reason == undef ->  		    Default;  		Trace ->  		    ct_logs:log("Suite Hook","Call to CTH failed: ~p:~p", diff --git a/lib/common_test/src/ct_line.erl b/lib/common_test/src/ct_line.erl deleted file mode 100644 index 4af9da5463..0000000000 --- a/lib/common_test/src/ct_line.erl +++ /dev/null @@ -1,266 +0,0 @@ -%% -%% %CopyrightBegin% -%%  -%% Copyright Ericsson AB 2003-2009. All Rights Reserved. -%%  -%% The contents of this file are subject to the Erlang Public License, -%% Version 1.1, (the "License"); you may not use this file except in -%% compliance with the License. You should have received a copy of the -%% Erlang Public License along with this software. If not, it can be -%% retrieved online at http://www.erlang.org/. -%%  -%% Software distributed under the License is distributed on an "AS IS" -%% basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See -%% the License for the specific language governing rights and limitations -%% under the License. -%%  -%% %CopyrightEnd% -%% - -%%% @doc Parse transform for inserting line numbers - --module(ct_line). - --record(vars, {module,                      % atom() Module name -	       vsn,                         % atom() -	        -	       init_info=[],                % [{M,F,A,C,L}] - -	       function,                    % atom() -	       arity,                       % int() -	       clause,                      % int() -	       lines,                       % [int()] -	       depth,                       % int() -	       is_guard=false               % boolean -	      }). - --export([parse_transform/2, -	line/1]). - -line(LOC={{Mod,Func},_Line}) -> -    Lines = case get(test_server_loc) of -		[{{Mod,Func},_}|Ls] ->  -		    Ls; -		Ls when is_list(Ls) ->  -		    case length(Ls) of -			10 -> -			    [_|T]=lists:reverse(Ls), -			    lists:reverse(T); -			_ -> -			    Ls -		    end; -		_ ->  -		    []  -	    end, -    put(test_server_loc,[LOC|Lines]). - -parse_transform(Forms, _Options) -> -    transform(Forms, _Options). - -%% forms(Fs) -> lists:map(fun (F) -> form(F) end, Fs). - -transform(Forms, _Options)-> -    Vars0 = #vars{}, -    {ok, MungedForms, _Vars} = transform(Forms, [], Vars0), -    MungedForms. -     - -transform([Form|Forms], MungedForms, Vars) -> -    case munge(Form, Vars) of -	ignore -> -	    transform(Forms, MungedForms, Vars); -	{MungedForm, Vars2} -> -	    transform(Forms, [MungedForm|MungedForms], Vars2) -    end; -transform([], MungedForms, Vars) -> -    {ok, lists:reverse(MungedForms), Vars}. - -%% This code traverses the abstract code, stored as the abstract_code -%% chunk in the BEAM file, as described in absform(3) for Erlang/OTP R8B -%% (Vsn=abstract_v2). -%% The abstract format after preprocessing differs slightly from the abstract -%% format given eg using epp:parse_form, this has been noted in comments. -munge(Form={attribute,_,module,Module}, Vars) -> -    Vars2 = Vars#vars{module=Module}, -    {Form, Vars2}; - -munge({function,0,module_info,_Arity,_Clauses}, _Vars) -> -    ignore; % module_info will be added again when the forms are recompiled -munge({function,Line,Function,Arity,Clauses}, Vars) -> -    Vars2 = Vars#vars{function=Function, -		      arity=Arity, -		      clause=1, -		      lines=[], -		      depth=1}, -    {MungedClauses, Vars3} = munge_clauses(Clauses, Vars2, []), -    {{function,Line,Function,Arity,MungedClauses}, Vars3}; -munge(Form, Vars) -> % attributes -    {Form, Vars}. - -munge_clauses([{clause,Line,Pattern,Guards,Body}|Clauses], Vars, MClauses) -> -    {MungedGuards, _Vars} = munge_exprs(Guards, Vars#vars{is_guard=true},[]), - -    case Vars#vars.depth of -	1 -> % function clause -	    {MungedBody, Vars2} = munge_body(Body, Vars#vars{depth=2}, []), -	    ClauseInfo = {Vars2#vars.module, -			  Vars2#vars.function, -			  Vars2#vars.arity, -			  Vars2#vars.clause, -			  length(Vars2#vars.lines)}, -	    InitInfo = [ClauseInfo | Vars2#vars.init_info], -	    Vars3 = Vars2#vars{init_info=InitInfo, -			       clause=(Vars2#vars.clause)+1, -			       lines=[], -			       depth=1}, -	    munge_clauses(Clauses, Vars3, -			  [{clause,Line,Pattern,MungedGuards,MungedBody}| -			   MClauses]); - -	2 -> % receive-,  case- or if clause -	    {MungedBody, Vars2} = munge_body(Body, Vars, []), -	    munge_clauses(Clauses, Vars2, -			  [{clause,Line,Pattern,MungedGuards,MungedBody}| -			   MClauses]) -    end; -munge_clauses([], Vars, MungedClauses) ->  -    {lists:reverse(MungedClauses), Vars}. - -munge_body([Expr|Body], Vars, MungedBody) -> -    %% Here is the place to add a call to cover:bump/6! -    Line = element(2, Expr), -    Lines = Vars#vars.lines, -    case lists:member(Line,Lines) of -	true -> % already a bump at this line! -	    {MungedExpr, Vars2} = munge_expr(Expr, Vars), -	    munge_body(Body, Vars2, [MungedExpr|MungedBody]); -	false -> -	    Bump = {call, 0, {remote,0,{atom,0,?MODULE},{atom,0,line}}, -		    [{tuple,0,[{tuple,0,[{atom,0,Vars#vars.module}, -					 {atom, 0, Vars#vars.function}]}, -		     {integer, 0, Line}]}]}, -	    Lines2 = [Line|Lines], - -	    {MungedExpr, Vars2} = munge_expr(Expr, Vars#vars{lines=Lines2}), -	    munge_body(Body, Vars2, [MungedExpr,Bump|MungedBody]) -    end; -munge_body([], Vars, MungedBody) -> -    {lists:reverse(MungedBody), Vars}. - -munge_expr({match,Line,ExprL,ExprR}, Vars) -> -    {MungedExprL, Vars2} = munge_expr(ExprL, Vars), -    {MungedExprR, Vars3} = munge_expr(ExprR, Vars2), -    {{match,Line,MungedExprL,MungedExprR}, Vars3}; -munge_expr({tuple,Line,Exprs}, Vars) -> -    {MungedExprs, Vars2} = munge_exprs(Exprs, Vars, []), -    {{tuple,Line,MungedExprs}, Vars2}; -munge_expr({record,Line,Expr,Exprs}, Vars) -> -    %% Only for Vsn=raw_abstract_v1 -    {MungedExprName, Vars2} = munge_expr(Expr, Vars), -    {MungedExprFields, Vars3} = munge_exprs(Exprs, Vars2, []), -    {{record,Line,MungedExprName,MungedExprFields}, Vars3}; -munge_expr({record_field,Line,ExprL,ExprR}, Vars) -> -    %% Only for Vsn=raw_abstract_v1 -    {MungedExprL, Vars2} = munge_expr(ExprL, Vars), -    {MungedExprR, Vars3} = munge_expr(ExprR, Vars2), -    {{record_field,Line,MungedExprL,MungedExprR}, Vars3}; -munge_expr({cons,Line,ExprH,ExprT}, Vars) -> -    {MungedExprH, Vars2} = munge_expr(ExprH, Vars), -    {MungedExprT, Vars3} = munge_expr(ExprT, Vars2), -    {{cons,Line,MungedExprH,MungedExprT}, Vars3}; -munge_expr({op,Line,Op,ExprL,ExprR}, Vars) -> -    {MungedExprL, Vars2} = munge_expr(ExprL, Vars), -    {MungedExprR, Vars3} = munge_expr(ExprR, Vars2), -    {{op,Line,Op,MungedExprL,MungedExprR}, Vars3}; -munge_expr({op,Line,Op,Expr}, Vars) -> -    {MungedExpr, Vars2} = munge_expr(Expr, Vars), -    {{op,Line,Op,MungedExpr}, Vars2}; -munge_expr({'catch',Line,Expr}, Vars) -> -    {MungedExpr, Vars2} = munge_expr(Expr, Vars), -    {{'catch',Line,MungedExpr}, Vars2}; -munge_expr({call,Line1,{remote,Line2,ExprM,ExprF},Exprs}, -	   Vars) when Vars#vars.is_guard==false-> -    {MungedExprM, Vars2} = munge_expr(ExprM, Vars), -    {MungedExprF, Vars3} = munge_expr(ExprF, Vars2), -    {MungedExprs, Vars4} = munge_exprs(Exprs, Vars3, []), -    {{call,Line1,{remote,Line2,MungedExprM,MungedExprF},MungedExprs}, Vars4}; -munge_expr({call,Line1,{remote,_Line2,_ExprM,ExprF},Exprs}, -	   Vars) when Vars#vars.is_guard==true -> -    %% Difference in abstract format after preprocessing: BIF calls in guards -    %% are translated to {remote,...} (which is not allowed as source form) -    %% NOT NECESSARY FOR Vsn=raw_abstract_v1 -    munge_expr({call,Line1,ExprF,Exprs}, Vars); -munge_expr({call,Line,Expr,Exprs}, Vars) -> -    {MungedExpr, Vars2} = munge_expr(Expr, Vars), -    {MungedExprs, Vars3} = munge_exprs(Exprs, Vars2, []), -    {{call,Line,MungedExpr,MungedExprs}, Vars3}; -munge_expr({lc,Line,Expr,LC}, Vars) -> -    {MungedExpr, Vars2} = munge_expr(Expr, Vars), -    {MungedLC, Vars3} = munge_lc(LC, Vars2, []), -    {{lc,Line,MungedExpr,MungedLC}, Vars3}; -munge_expr({block,Line,Body}, Vars) -> -    {MungedBody, Vars2} = munge_body(Body, Vars, []), -    {{block,Line,MungedBody}, Vars2}; -munge_expr({'if',Line,Clauses}, Vars) ->  -    {MungedClauses,Vars2} = munge_clauses(Clauses, Vars, []), -    {{'if',Line,MungedClauses}, Vars2}; -munge_expr({'case',Line,Expr,Clauses}, Vars) -> -    {MungedExpr,Vars2} = munge_expr(Expr,Vars), -    {MungedClauses,Vars3} = munge_clauses(Clauses, Vars2, []), -    {{'case',Line,MungedExpr,MungedClauses}, Vars3}; -munge_expr({'receive',Line,Clauses}, Vars) ->  -    {MungedClauses,Vars2} = munge_clauses(Clauses, Vars, []), -    {{'receive',Line,MungedClauses}, Vars2}; -munge_expr({'receive',Line,Clauses,Expr,Body}, Vars) -> -    {MungedClauses,Vars2} = munge_clauses(Clauses, Vars, []), -    {MungedExpr, Vars3} = munge_expr(Expr, Vars2), -    {MungedBody, Vars4} = munge_body(Body, Vars3, []), -    {{'receive',Line,MungedClauses,MungedExpr,MungedBody}, Vars4}; -munge_expr({'try',Line,Exprs,Clauses,CatchClauses}, Vars) -> -    {MungedExprs, Vars1} = munge_exprs(Exprs, Vars, []), -    {MungedClauses, Vars2} = munge_clauses(Clauses, Vars1, []), -    {MungedCatchClauses, Vars3} = munge_clauses(CatchClauses, Vars2, []), -    {{'try',Line,MungedExprs,MungedClauses,MungedCatchClauses}, Vars3}; -%% Difference in abstract format after preprocessing: Funs get an extra -%% element Extra. -%% NOT NECESSARY FOR Vsn=raw_abstract_v1 -munge_expr({'fun',Line,{function,Name,Arity},_Extra}, Vars) -> -    {{'fun',Line,{function,Name,Arity}}, Vars}; -munge_expr({'fun',Line,{clauses,Clauses},_Extra}, Vars) -> -    {MungedClauses,Vars2}=munge_clauses(Clauses, Vars, []), -    {{'fun',Line,{clauses,MungedClauses}}, Vars2}; -munge_expr({'fun',Line,{clauses,Clauses}}, Vars) -> -    %% Only for Vsn=raw_abstract_v1 -    {MungedClauses,Vars2}=munge_clauses(Clauses, Vars, []), -    {{'fun',Line,{clauses,MungedClauses}}, Vars2}; -munge_expr(Form, Vars) -> % var|char|integer|float|string|atom|nil|bin|eof -    {Form, Vars}. - -munge_exprs([Expr|Exprs], Vars, MungedExprs) when Vars#vars.is_guard==true, -						  is_list(Expr) -> -    {MungedExpr, _Vars} = munge_exprs(Expr, Vars, []), -    munge_exprs(Exprs, Vars, [MungedExpr|MungedExprs]); -munge_exprs([Expr|Exprs], Vars, MungedExprs) -> -    {MungedExpr, Vars2} = munge_expr(Expr, Vars), -    munge_exprs(Exprs, Vars2, [MungedExpr|MungedExprs]); -munge_exprs([], Vars, MungedExprs) -> -    {lists:reverse(MungedExprs), Vars}. - -munge_lc([{generate,Line,Pattern,Expr}|LC], Vars, MungedLC) -> -    {MungedExpr, Vars2} = munge_expr(Expr, Vars), -    munge_lc(LC, Vars2, [{generate,Line,Pattern,MungedExpr}|MungedLC]); -munge_lc([Expr|LC], Vars, MungedLC) -> -    {MungedExpr, Vars2} = munge_expr(Expr, Vars), -    munge_lc(LC, Vars2, [MungedExpr|MungedLC]); -munge_lc([], Vars, MungedLC) -> -    {lists:reverse(MungedLC), Vars}. - - - - - - - - - - diff --git a/lib/common_test/test/ct_error_SUITE.erl b/lib/common_test/test/ct_error_SUITE.erl index 6867e59b60..836443009f 100644 --- a/lib/common_test/test/ct_error_SUITE.erl +++ b/lib/common_test/test/ct_error_SUITE.erl @@ -280,41 +280,21 @@ test_events(cfg_error) ->       {?eh,tc_start,{cfg_error_2_SUITE,init_per_suite}},       {?eh,tc_done,        {cfg_error_2_SUITE,init_per_suite, -       {failed,{error,{{badmatch,[1,2]}, -		       [{cfg_error_2_SUITE,init_per_suite,1}, -			{test_server,my_apply,3}, -			{test_server,ts_tc,3}, -			{test_server,run_test_case_eval1,6}, -			{test_server,run_test_case_eval,8}]}}}}}, +       {failed,{error,{{badmatch,[1,2]},'_'}}}}},       {?eh,tc_auto_skip,        {cfg_error_2_SUITE,tc1,         {failed,{cfg_error_2_SUITE,init_per_suite,       -		{'EXIT',{{badmatch,[1,2]}, -			 [{cfg_error_2_SUITE,init_per_suite,1}, -			  {test_server,my_apply,3}, -			  {test_server,ts_tc,3}, -			  {test_server,run_test_case_eval1,6}, -			  {test_server,run_test_case_eval,8}]}}}}}}, +		{'EXIT',{{badmatch,[1,2]},'_'}}}}}},       {?eh,test_stats,{0,0,{0,3}}},       {?eh,tc_auto_skip,        {cfg_error_2_SUITE,tc2,         {failed,{cfg_error_2_SUITE,init_per_suite,       -		{'EXIT',{{badmatch,[1,2]}, -			 [{cfg_error_2_SUITE,init_per_suite,1}, -			  {test_server,my_apply,3}, -			  {test_server,ts_tc,3}, -			  {test_server,run_test_case_eval1,6}, -			  {test_server,run_test_case_eval,8}]}}}}}}, +		{'EXIT',{{badmatch,[1,2]},'_'}}}}}},       {?eh,test_stats,{0,0,{0,4}}},       {?eh,tc_auto_skip,        {cfg_error_2_SUITE,end_per_suite,         {failed,{cfg_error_2_SUITE,init_per_suite,       -		{'EXIT',{{badmatch,[1,2]}, -			 [{cfg_error_2_SUITE,init_per_suite,1}, -			  {test_server,my_apply,3}, -			  {test_server,ts_tc,3}, -			  {test_server,run_test_case_eval1,6}, -			  {test_server,run_test_case_eval,8}]}}}}}}, +		{'EXIT',{{badmatch,[1,2]},'_'}}}}}},       {?eh,tc_start,{cfg_error_3_SUITE,init_per_suite}},       {?eh,tc_done, @@ -373,12 +353,7 @@ test_events(cfg_error) ->        {?eh,tc_done,{cfg_error_6_SUITE,{end_per_group,g1,[]},ok}}],       {?eh,tc_start,{cfg_error_6_SUITE,end_per_suite}},       {?eh,tc_done,{cfg_error_6_SUITE,end_per_suite, -		   {failed,{error,{{badmatch,[1,2]}, -				   [{cfg_error_6_SUITE,end_per_suite,1}, -				    {test_server,my_apply,3}, -				    {test_server,ts_tc,3}, -				    {test_server,run_test_case_eval1,6}, -				    {test_server,run_test_case_eval,8}]}}}}}, +		   {failed,{error,{{badmatch,[1,2]},'_'}}}}},       {?eh,tc_start,{cfg_error_7_SUITE,init_per_suite}},       {?eh,tc_done,{cfg_error_7_SUITE,init_per_suite,ok}}, @@ -427,31 +402,16 @@ test_events(cfg_error) ->       [{?eh,tc_start,{cfg_error_8_SUITE,{init_per_group,g3,[]}}},        {?eh,tc_done,         {cfg_error_8_SUITE,{init_per_group,g3,[]}, -	{failed,{error,{{badmatch,42}, -			[{cfg_error_8_SUITE,init_per_group,2}, -			 {test_server,my_apply,3}, -			 {test_server,ts_tc,3}, -			 {test_server,run_test_case_eval1,6}, -			 {test_server,run_test_case_eval,8}]}}}}}, +	{failed,{error,{{badmatch,42},'_'}}}}},        {?eh,tc_auto_skip,         {cfg_error_8_SUITE,tc1,  	{failed,{cfg_error_8_SUITE,init_per_group, -		 {'EXIT',{{badmatch,42}, -			  [{cfg_error_8_SUITE,init_per_group,2}, -			   {test_server,my_apply,3}, -			   {test_server,ts_tc,3}, -			   {test_server,run_test_case_eval1,6}, -			   {test_server,run_test_case_eval,8}]}}}}}}, +		 {'EXIT',{{badmatch,42},'_'}}}}}},        {?eh,test_stats,{4,0,{0,13}}},        {?eh,tc_auto_skip,         {cfg_error_8_SUITE,end_per_group,  	{failed,{cfg_error_8_SUITE,init_per_group, -		 {'EXIT',{{badmatch,42}, -			  [{cfg_error_8_SUITE,init_per_group,2}, -			   {test_server,my_apply,3}, -			   {test_server,ts_tc,3}, -			   {test_server,run_test_case_eval1,6}, -			   {test_server,run_test_case_eval,8}]}}}}}}], +		 {'EXIT',{{badmatch,42},'_'}}}}}}],       [{?eh,tc_start,{cfg_error_8_SUITE,{init_per_group,g4,[]}}},        {?eh,tc_done,{cfg_error_8_SUITE,{init_per_group,g4,[]},ok}}, @@ -520,12 +480,7 @@ test_events(cfg_error) ->       {?eh,tc_start,{cfg_error_9_SUITE,tc3}},       {?eh,tc_done,{cfg_error_9_SUITE,tc3,  		   {skipped,{failed,{cfg_error_9_SUITE,init_per_testcase, -				     {{badmatch,undefined}, -				      [{cfg_error_9_SUITE,init_per_testcase,2}, -				       {test_server,my_apply,3}, -				       {test_server,init_per_testcase,3}, -				       {test_server,run_test_case_eval1,6}, -				       {test_server,run_test_case_eval,8}]}}}}}}, +				     {{badmatch,undefined},'_'}}}}}},       {?eh,test_stats,{9,0,{0,17}}},       {?eh,tc_start,{cfg_error_9_SUITE,tc4}},       {?eh,tc_done, @@ -640,13 +595,7 @@ test_events(lib_error) ->       {?eh,tc_done,        {lib_error_1_SUITE,lines_error,{failed,  				      {error, -				       {{badmatch,[1,2]}, -					[{lib_lines,do_error,0}, -					 {lib_error_1_SUITE,lines_error,1}, -					 {test_server,my_apply,3}, -					 {test_server,ts_tc,3}, -					 {test_server,run_test_case_eval1,6}, -					 {test_server,run_test_case_eval,8}]}}}}}, +				       {{badmatch,[1,2]},'_'}}}}},       {?eh,test_stats,{0,1,{0,0}}},       {?eh,tc_start,{lib_error_1_SUITE,lines_exit}},       {?eh,tc_done, @@ -665,13 +614,7 @@ test_events(lib_error) ->       {?eh,tc_done,        {lib_error_1_SUITE,no_lines_error,{failed,  					 {error, -					  {{badmatch,[1,2]}, -					   [{lib_no_lines,do_error,0}, -					    {lib_error_1_SUITE,no_lines_error,1}, -					    {test_server,my_apply,3}, -					    {test_server,ts_tc,3}, -					    {test_server,run_test_case_eval1,6}, -					    {test_server,run_test_case_eval,8}]}}}}}, +					  {{badmatch,[1,2]},'_'}}}}},       {?eh,test_stats,{0,5,{0,0}}},       {?eh,tc_start,{lib_error_1_SUITE,no_lines_exit}},       {?eh,tc_done, diff --git a/lib/common_test/test/ct_repeat_1_SUITE.erl b/lib/common_test/test/ct_repeat_1_SUITE.erl index 4e842bd6d6..090002d0c2 100644 --- a/lib/common_test/test/ct_repeat_1_SUITE.erl +++ b/lib/common_test/test/ct_repeat_1_SUITE.erl @@ -560,12 +560,7 @@ test_events(repeat_cs_until_any_fail) ->  	{repeat_1_SUITE,tc_fail_1,  	 {failed,  	  {error, -	   {{badmatch,2}, -	    [{repeat_1_SUITE,tc_fail_1,1}, -	     {test_server,my_apply,3}, -	     {test_server,ts_tc,3}, -	     {test_server,run_test_case_eval1,6}, -	     {test_server,run_test_case_eval,8}]}}}}}, +	   {{badmatch,2},'_'}}}}},         {?eh,test_stats,{5,2,{0,0}}},         {?eh,tc_start,{repeat_1_SUITE,tc_fail_2}},         {?eh,tc_done, diff --git a/lib/common_test/test/ct_skip_SUITE.erl b/lib/common_test/test/ct_skip_SUITE.erl index 4ba4479208..b8be55f43a 100644 --- a/lib/common_test/test/ct_skip_SUITE.erl +++ b/lib/common_test/test/ct_skip_SUITE.erl @@ -197,7 +197,7 @@ test_events(auto_skip) ->       {?eh,tc_done,        {auto_skip_3_SUITE,tc1,         {skipped,{failed,{auto_skip_3_SUITE,init_per_testcase, -			 {init_per_testcase,tc1,failed}}}}}}, +			 {{init_per_testcase,tc1,failed},'_'}}}}}},       {?eh,test_stats,{0,0,{0,4}}},       {?eh,tc_start,{auto_skip_3_SUITE,tc2}},       {?eh,tc_done,{auto_skip_3_SUITE,tc2,ok}}, @@ -364,12 +364,7 @@ test_events(auto_skip) ->  	 {?eh,tc_done,  	  {auto_skip_9_SUITE,tc8,  	   {skipped,{failed,{auto_skip_9_SUITE,init_per_testcase, -			     {{badmatch,undefined}, -			      [{auto_skip_9_SUITE,init_per_testcase,2}, -			       {test_server,my_apply,3}, -			       {test_server,init_per_testcase,3}, -			       {test_server,run_test_case_eval1,6}, -			       {test_server,run_test_case_eval,8}]}}}}}}, +			     {{badmatch,undefined},'_'}}}}}},  	 {?eh,tc_start,  	  {auto_skip_9_SUITE,{end_per_group,g5,[parallel]}}},  	 {?eh,tc_done, | 
