aboutsummaryrefslogtreecommitdiffstats
path: root/erts/test/otp_SUITE.erl
diff options
context:
space:
mode:
authorLukas Larsson <[email protected]>2012-06-01 10:53:11 +0200
committerLukas Larsson <[email protected]>2012-06-01 10:53:11 +0200
commitb82c337dfce2d5bc1e435ebaa6060cb982bc5ad6 (patch)
tree8407030ca1c7b7649a21030c36275193d066e36c /erts/test/otp_SUITE.erl
parent3e348c69b6921dd0e2c5b699ccd36d46321c953c (diff)
parent50da1658240587622a057afe2db13d7ebcea3813 (diff)
downloadotp-b82c337dfce2d5bc1e435ebaa6060cb982bc5ad6.tar.gz
otp-b82c337dfce2d5bc1e435ebaa6060cb982bc5ad6.tar.bz2
otp-b82c337dfce2d5bc1e435ebaa6060cb982bc5ad6.zip
Merge branch 'lukas/test-cases' into maint
* lukas/test-cases: Ignore calls to wx* modules if it is undefined Fix erl_interface testcases Update gccifier to respect -link option Extand timetrap for escript tests Fix compilation issues on windows and Ubuntu 12.04 Ignore common_test bootstrap
Diffstat (limited to 'erts/test/otp_SUITE.erl')
-rw-r--r--erts/test/otp_SUITE.erl16
1 files changed, 15 insertions, 1 deletions
diff --git a/erts/test/otp_SUITE.erl b/erts/test/otp_SUITE.erl
index 277abb2554..332733e075 100644
--- a/erts/test/otp_SUITE.erl
+++ b/erts/test/otp_SUITE.erl
@@ -89,7 +89,8 @@ undefined_functions(Config) when is_list(Config) ->
?line Undef2 = ssl_crypto_filter(Undef1),
?line Undef3 = edoc_filter(Undef2),
Undef4 = eunit_filter(Undef3),
- Undef = dialyzer_filter(Undef4),
+ Undef5 = dialyzer_filter(Undef4),
+ Undef = wx_filter(Undef5),
case Undef of
[] -> ok;
@@ -188,6 +189,19 @@ dialyzer_filter(Undef) ->
_ -> Undef
end.
+wx_filter(Undef) ->
+ case code:lib_dir(wx) of
+ {error,bad_name} ->
+ filter(fun({_,{MaybeWxModule,_,_}}) ->
+ case atom_to_list(MaybeWxModule) of
+ "wx"++_ -> false;
+ _ -> true
+ end
+ end, Undef);
+ _ -> Undef
+ end.
+
+
deprecated_not_in_obsolete(Config) when is_list(Config) ->
?line Server = ?config(xref_server, Config),
?line {ok,DeprecatedFunctions} = xref:q(Server, "DF"),