aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ssh/test/ssh_basic_SUITE.erl
diff options
context:
space:
mode:
authorIngela Anderton Andin <[email protected]>2012-02-07 14:27:52 +0100
committerIngela Anderton Andin <[email protected]>2012-02-10 15:34:29 +0100
commit7e3101ebcf816925e3f6b0d4fdd75b18999b63ad (patch)
tree3b815f956baee2968e3ec919099e358b5e804d14 /lib/ssh/test/ssh_basic_SUITE.erl
parentc44ad548ebff4b4aaa6c7eafa463a94f638bf9d6 (diff)
downloadotp-7e3101ebcf816925e3f6b0d4fdd75b18999b63ad.tar.gz
otp-7e3101ebcf816925e3f6b0d4fdd75b18999b63ad.tar.bz2
otp-7e3101ebcf816925e3f6b0d4fdd75b18999b63ad.zip
Correct access flag handling in sftpd
Also Moved app test to ssh_basic_SUITE There is no reason to have a separate suite for the app test it increases maintenance costs
Diffstat (limited to 'lib/ssh/test/ssh_basic_SUITE.erl')
-rw-r--r--lib/ssh/test/ssh_basic_SUITE.erl11
1 files changed, 10 insertions, 1 deletions
diff --git a/lib/ssh/test/ssh_basic_SUITE.erl b/lib/ssh/test/ssh_basic_SUITE.erl
index ebbf044a8b..d69c71c842 100644
--- a/lib/ssh/test/ssh_basic_SUITE.erl
+++ b/lib/ssh/test/ssh_basic_SUITE.erl
@@ -103,7 +103,8 @@ end_per_testcase(_Config) ->
%% Description: Returns a list of all test cases in this test suite
%%--------------------------------------------------------------------
all() ->
- [{group, dsa_key},
+ [app_test,
+ {group, dsa_key},
{group, rsa_key},
daemon_already_started,
server_password_option, server_userpassword_option].
@@ -139,6 +140,14 @@ end_per_group(_, Config) ->
%% Test cases starts here.
%%--------------------------------------------------------------------
+app_test(suite) ->
+ [];
+app_test(doc) ->
+ ["Application consistency test."];
+app_test(Config) when is_list(Config) ->
+ ?t:app_test(ssh),
+ ok.
+
exec(doc) ->
["Test api function ssh_connection:exec"];