diff options
author | Lukas Larsson <[email protected]> | 2010-12-15 15:45:55 +0100 |
---|---|---|
committer | Niclas Eklund <[email protected]> | 2011-05-19 14:38:12 +0200 |
commit | ca09b09dff13a70ff07c835c2ae951f3d7a2ac07 (patch) | |
tree | 3999c61f9a461829b101e4476ad48714eaea2008 /lib/ssh/test/ssh_sftpd_erlclient_SUITE.erl | |
parent | d6e981e751b4565773204d7eb394ca445d63e771 (diff) | |
download | otp-ca09b09dff13a70ff07c835c2ae951f3d7a2ac07.tar.gz otp-ca09b09dff13a70ff07c835c2ae951f3d7a2ac07.tar.bz2 otp-ca09b09dff13a70ff07c835c2ae951f3d7a2ac07.zip |
Convert ssh test cases to common test stardard
Diffstat (limited to 'lib/ssh/test/ssh_sftpd_erlclient_SUITE.erl')
-rw-r--r-- | lib/ssh/test/ssh_sftpd_erlclient_SUITE.erl | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/lib/ssh/test/ssh_sftpd_erlclient_SUITE.erl b/lib/ssh/test/ssh_sftpd_erlclient_SUITE.erl index 6ae5e73dcb..7e9b6024e5 100644 --- a/lib/ssh/test/ssh_sftpd_erlclient_SUITE.erl +++ b/lib/ssh/test/ssh_sftpd_erlclient_SUITE.erl @@ -23,7 +23,7 @@ %% Note: This directive should only be used in test suites. -compile(export_all). --include("test_server.hrl"). +-include_lib("common_test/include/ct.hrl"). -include("test_server_line.hrl"). -include_lib("kernel/include/file.hrl"). @@ -147,13 +147,20 @@ end_per_testcase(_TestCase, Config) -> %% Name of a test case. %% Description: Returns a list of all test cases in this test suite %%-------------------------------------------------------------------- -all(doc) -> - ["Test ssh_sftpd"]; - -all(suite) -> +all() -> [close_file_OTP_6350, quit_OTP_6349, file_cb_OTP_6356, root_dir, list_dir_limited]. +groups() -> + []. + +init_per_group(_GroupName, Config) -> + Config. + +end_per_group(_GroupName, Config) -> + Config. + + %% Test cases starts here. %%-------------------------------------------------------------------- close_file_OTP_6350(doc) -> |