aboutsummaryrefslogtreecommitdiffstats
path: root/lib/common_test/src
diff options
context:
space:
mode:
authorLukas Larsson <[email protected]>2010-09-27 16:25:40 +0200
committerLukas Larsson <[email protected]>2010-12-08 18:07:47 +0100
commit587bceba86718fb935e367a558af9f60bcd2bec8 (patch)
treed6473485bd3af35172094e73e751d5585bba3b67 /lib/common_test/src
parent95b6bdd287c5b7c5d3c70290489576bf48449ac1 (diff)
downloadotp-587bceba86718fb935e367a558af9f60bcd2bec8.tar.gz
otp-587bceba86718fb935e367a558af9f60bcd2bec8.tar.bz2
otp-587bceba86718fb935e367a558af9f60bcd2bec8.zip
Remove some compilation warnings
Diffstat (limited to 'lib/common_test/src')
-rw-r--r--lib/common_test/src/ct_suite_callback.erl8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/common_test/src/ct_suite_callback.erl b/lib/common_test/src/ct_suite_callback.erl
index fcada641d7..ab5c005a43 100644
--- a/lib/common_test/src/ct_suite_callback.erl
+++ b/lib/common_test/src/ct_suite_callback.erl
@@ -59,7 +59,7 @@ terminate(_Config, _State) ->
{skip, Reason :: term()} |
{auto_skip, Reason :: term()} |
{fail, Reason :: term()}.
-init_tc(ct_framework, Mod, Args) ->
+init_tc(ct_framework, _Func, Args) ->
Args;
init_tc(Mod, init_per_suite, Config) ->
call(fun call_generic/3, Config, {pre_init_suite, Mod});
@@ -83,7 +83,7 @@ init_tc(_Mod, TC, Config) ->
{auto_skip, Reason :: term()} |
{fail, Reason :: term()} |
ok.
-end_tc(ct_framework, Mod, _Args, Result) ->
+end_tc(ct_framework, _Func, _Args, Result) ->
Result;
end_tc(Mod, init_per_suite, _Config, Result) ->
call(fun call_generic/3, Result, {post_init_suite, Mod});
@@ -123,7 +123,7 @@ call([{CB, call_init, NextFun} | Rest], Config, Meta, CBs) ->
{NewCBs, NewRest} = case proplists:get_value(NewId, CBs, NextFun) of
undefined -> {CBs ++ [NewCB],Rest};
ExistingCB when is_tuple(ExistingCB) -> {CBs, Rest};
- Fun -> {CBs ++ [NewCB],[{NewId, NextFun} | Rest]}
+ _ -> {CBs ++ [NewCB],[{NewId, NextFun} | Rest]}
end,
call(NewRest, Config, Meta, NewCBs);
call([{CBId, Fun} | Rest], Config, Meta, CBs) ->
@@ -131,7 +131,7 @@ call([{CBId, Fun} | Rest], Config, Meta, CBs) ->
NewCalls = get_new_callbacks(NewConf, Fun),
call(NewCalls ++ Rest, remove(?config_name, NewConf), Meta,
lists:keyreplace(CBId, 1, CBs, {CBId, NewCBInfo}));
-call([], Config, Meta, CBs) ->
+call([], Config, _Meta, CBs) ->
ct_util:save_suite_data_async(?config_name, CBs),
Config.