diff options
Diffstat (limited to 'lib/ftp/test/ftp_SUITE.erl')
-rw-r--r-- | lib/ftp/test/ftp_SUITE.erl | 15 |
1 files changed, 15 insertions, 0 deletions
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"}]. |