aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPéter Dimitrov <[email protected]>2018-03-12 12:24:57 +0100
committerPéter Dimitrov <[email protected]>2018-03-28 10:19:38 +0200
commit66209e1ed94bb13c62987f5ca3f6d50c92fd17b7 (patch)
tree4094384251ca32c4cd991980dd79fb629b6626a3
parent4267a34d0f99a27d004f6d2c9f87df02a131c17a (diff)
downloadotp-66209e1ed94bb13c62987f5ca3f6d50c92fd17b7.tar.gz
otp-66209e1ed94bb13c62987f5ca3f6d50c92fd17b7.tar.bz2
otp-66209e1ed94bb13c62987f5ca3f6d50c92fd17b7.zip
ftp: Update app.src file
Change-Id: I4939a45cde292347975d8b870caeff15724046d2
-rw-r--r--lib/ftp/src/ftp.app.src13
-rw-r--r--lib/ftp/test/ftp_SUITE.erl15
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"}].