diff options
author | Lukas Larsson <[email protected]> | 2010-10-12 10:39:40 +0200 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2011-02-17 17:25:13 +0100 |
commit | f02cc10b4bda484996b7b93436fcaf8d714cb3da (patch) | |
tree | f749029b5264a7a797244cf87eb879a347e18a82 /lib/inets/test/tftp_SUITE.erl | |
parent | 8bd07f450816eaaae52d28740d89ead1f930cd02 (diff) | |
download | otp-f02cc10b4bda484996b7b93436fcaf8d714cb3da.tar.gz otp-f02cc10b4bda484996b7b93436fcaf8d714cb3da.tar.bz2 otp-f02cc10b4bda484996b7b93436fcaf8d714cb3da.zip |
Update inets tests to conform with common_test standard
Diffstat (limited to 'lib/inets/test/tftp_SUITE.erl')
-rw-r--r-- | lib/inets/test/tftp_SUITE.erl | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/lib/inets/test/tftp_SUITE.erl b/lib/inets/test/tftp_SUITE.erl index 7c75b809ae..44fc189a96 100644 --- a/lib/inets/test/tftp_SUITE.erl +++ b/lib/inets/test/tftp_SUITE.erl @@ -71,17 +71,19 @@ end_per_testcase(Case, Config) when is_list(Config) -> %% Top test case %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -all(doc) -> - ["Test suites for TFTP."]; - -all(suite) -> - [ - simple, - extra, - reuse_connection, - resend_client, - resend_server - ]. +all() -> +[simple, extra, reuse_connection, resend_client, + resend_server]. + +groups() -> + []. + +init_per_group(_GroupName, Config) -> + Config. + +end_per_group(_GroupName, Config) -> + Config. + %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %% Simple |