diff options
author | Hans Bolinder <hasse@erlang.org> | 2019-08-22 08:41:34 +0200 |
---|---|---|
committer | Hans Bolinder <hasse@erlang.org> | 2019-08-22 08:41:34 +0200 |
commit | d670fe64723ed348c8829a6528292cdc9d0ad5a1 (patch) | |
tree | 6a80350471091ef829196d5749a89590029f0461 /erts/test | |
parent | 0dff7f73570e371cb4d1b3ac774f10e4064e7b26 (diff) | |
parent | f118df01b0183f5db10f15c4e852eb504a47eac8 (diff) | |
download | erlang-d670fe64723ed348c8829a6528292cdc9d0ad5a1.tar.gz |
Merge branch 'josevalim/edoc/no-more-inets/OTP-15999/PR-2317'
* josevalim/edoc/no-more-inets/OTP-15999/PR-2317:
system: Remove special handling of EDoc in otp_SUITE.
Remove inets dependency from edoc
Diffstat (limited to 'erts/test')
-rw-r--r-- | erts/test/otp_SUITE.erl | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/erts/test/otp_SUITE.erl b/erts/test/otp_SUITE.erl index 2372e8b9ac..c5e0dfe649 100644 --- a/erts/test/otp_SUITE.erl +++ b/erts/test/otp_SUITE.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2000-2018. All Rights Reserved. +%% Copyright Ericsson AB 2000-2019. All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. @@ -79,8 +79,7 @@ undefined_functions(Config) when is_list(Config) -> [UndefS,ExcludeFrom]), {ok,Undef0} = xref:q(Server, lists:flatten(Q)), Undef1 = hipe_filter(Undef0), - Undef2 = ssl_crypto_filter(Undef1), - Undef3 = edoc_filter(Undef2), + Undef3 = ssl_crypto_filter(Undef1), Undef4 = eunit_filter(Undef3), Undef5 = dialyzer_filter(Undef4), Undef6 = wx_filter(Undef5), @@ -157,12 +156,6 @@ ssl_crypto_filter(Undef) -> {_,_} -> Undef end. -edoc_filter(Undef) -> - %% Filter away function call that is catched. - filter(fun({{edoc_lib,uri_get_http,1},{http,request_sync,2}}) -> false; - (_) -> true - end, Undef). - eunit_filter(Undef) -> filter(fun({{eunit_test,wrapper_test_exported_,0}, {eunit_test,nonexisting_function,0}}) -> false; |