diff options
author | Peter Andersson <[email protected]> | 2012-08-27 12:03:10 +0200 |
---|---|---|
committer | Peter Andersson <[email protected]> | 2012-08-27 12:03:10 +0200 |
commit | 5472a54b7f952c08e794eb52175d3724cc2937db (patch) | |
tree | f5902094a99b51c710db28750c9ef61a1563f22c /lib/common_test/src/ct_framework.erl | |
parent | 30e714a61860745769f4f2eab0f5cb5e0d4dc947 (diff) | |
parent | 00455b5fec96bf320fc8b3656bb9dbd0395fa23b (diff) | |
download | otp-5472a54b7f952c08e794eb52175d3724cc2937db.tar.gz otp-5472a54b7f952c08e794eb52175d3724cc2937db.tar.bz2 otp-5472a54b7f952c08e794eb52175d3724cc2937db.zip |
Merge remote branch 'origin/peppe/common_test/misc_test_failures' into maint
* origin/peppe/common_test/misc_test_failures:
Solve problem with registering parallel testcases
Diffstat (limited to 'lib/common_test/src/ct_framework.erl')
-rw-r--r-- | lib/common_test/src/ct_framework.erl | 23 |
1 files changed, 11 insertions, 12 deletions
diff --git a/lib/common_test/src/ct_framework.erl b/lib/common_test/src/ct_framework.erl index e8d5d4708b..4d47731239 100644 --- a/lib/common_test/src/ct_framework.erl +++ b/lib/common_test/src/ct_framework.erl @@ -71,16 +71,13 @@ init_tc(Mod,Func,Config) -> {skip,{require_failed_in_suite0,Reason}}; {Suite,{suite0_failed,_}=Failure} -> {skip,Failure}; - CurrTC -> - case CurrTC of - undefined -> - ct_util:set_testdata({curr_tc,[{Suite,Func}]}); - _ when is_list(CurrTC) -> - ct_util:update_testdata(curr_tc, - fun(Running) -> - [{Suite,Func}|Running] - end) - end, + _ -> + ct_util:update_testdata(curr_tc, + fun(undefined) -> + [{Suite,Func}]; + (Running) -> + [{Suite,Func}|Running] + end, [create]), case ct_util:read_suite_data({seq,Suite,Func}) of undefined -> init_tc1(Mod,Suite,Func,Config); @@ -671,13 +668,15 @@ end_tc(Mod,Func,TCPid,Result,Args,Return) -> %% reset the curr_tc state, or delete this TC from the list of %% executing cases (if in a parallel group) ClearCurrTC = fun(Running = [_,_|_]) -> - lists:delete({Mod,Func},Running); + lists:keydelete(Func,2,Running); ({_,{suite0_failed,_}}) -> undefined; ([{_,CurrTC}]) when CurrTC == Func -> undefined; (undefined) -> - undefined + undefined; + (Unexpected) -> + exit({error,{reset_curr_tc,{Mod,Func},Unexpected}}) end, ct_util:update_testdata(curr_tc,ClearCurrTC), |