From 66209e1ed94bb13c62987f5ca3f6d50c92fd17b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A9ter=20Dimitrov?= Date: Mon, 12 Mar 2018 12:24:57 +0100 Subject: ftp: Update app.src file Change-Id: I4939a45cde292347975d8b870caeff15724046d2 --- lib/ftp/src/ftp.app.src | 13 ++++++++----- lib/ftp/test/ftp_SUITE.erl | 15 +++++++++++++++ 2 files changed, 23 insertions(+), 5 deletions(-) diff --git a/lib/ftp/src/ftp.app.src b/lib/ftp/src/ftp.app.src index ac9ae2ac53..b2e75fa2ba 100644 --- a/lib/ftp/src/ftp.app.src +++ b/lib/ftp/src/ftp.app.src @@ -8,9 +8,12 @@ stdlib ]}, {env,[]}, - {modules, []}, - - {maintainers, []}, - {licenses, ["Apache 2.0"]}, - {links, []} + {modules, [ + ftp, + ftp_app, + ftp_progress, + ftp_response, + ftp_sup + ]}, + {runtime_dependencies, ["stdlib-3.5","kernel-6.0"]} ]}. diff --git a/lib/ftp/test/ftp_SUITE.erl b/lib/ftp/test/ftp_SUITE.erl index 3d4331f866..3ebff82302 100644 --- a/lib/ftp/test/ftp_SUITE.erl +++ b/lib/ftp/test/ftp_SUITE.erl @@ -54,6 +54,8 @@ all() -> {group, ftps_passive}, {group, ftps_active}, {group, ftp_sup}, + app, + app_upp, error_ehost, clean_shutdown ]. @@ -287,6 +289,19 @@ end_per_testcase(_Case, Config) -> %%-------------------------------------------------------------------- %% Test Cases -------------------------------------------------------- %%-------------------------------------------------------------------- +app() -> + [{doc, "Test that the ftp app file is ok"}]. +app(Config) when is_list(Config) -> + ok = ?t:app_test(ftp). + +%%-------------------------------------------------------------------- +appup() -> + [{doc, "Test that the ftp appup file is ok"}]. +appup(Config) when is_list(Config) -> + ok = ?t:appup_test(ftp). + +%%-------------------------------------------------------------------- + user() -> [ {doc, "Open an ftp connection to a host, and logon as anonymous ftp," " then logoff"}]. -- cgit v1.2.3