diff options
author | Péter Dimitrov <[email protected]> | 2018-03-12 12:24:57 +0100 |
---|---|---|
committer | Péter Dimitrov <[email protected]> | 2018-03-28 10:19:38 +0200 |
commit | 66209e1ed94bb13c62987f5ca3f6d50c92fd17b7 (patch) | |
tree | 4094384251ca32c4cd991980dd79fb629b6626a3 /lib/ftp | |
parent | 4267a34d0f99a27d004f6d2c9f87df02a131c17a (diff) | |
download | otp-66209e1ed94bb13c62987f5ca3f6d50c92fd17b7.tar.gz otp-66209e1ed94bb13c62987f5ca3f6d50c92fd17b7.tar.bz2 otp-66209e1ed94bb13c62987f5ca3f6d50c92fd17b7.zip |
ftp: Update app.src file
Change-Id: I4939a45cde292347975d8b870caeff15724046d2
Diffstat (limited to 'lib/ftp')
-rw-r--r-- | lib/ftp/src/ftp.app.src | 13 | ||||
-rw-r--r-- | 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"}]. |