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/inets_sup_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/inets_sup_SUITE.erl')
-rw-r--r-- | lib/inets/test/inets_sup_SUITE.erl | 25 |
1 files changed, 14 insertions, 11 deletions
diff --git a/lib/inets/test/inets_sup_SUITE.erl b/lib/inets/test/inets_sup_SUITE.erl index 1e701bc074..aef59597a8 100644 --- a/lib/inets/test/inets_sup_SUITE.erl +++ b/lib/inets/test/inets_sup_SUITE.erl @@ -20,22 +20,25 @@ -module(inets_sup_SUITE). --include("test_server.hrl"). +-include_lib("common_test/include/ct.hrl"). -include("test_server_line.hrl"). %% Note: This directive should only be used in test suites. -compile(export_all). -all(doc) -> - ["Test that the inets supervisorstructur is the expected one."]; -all(suite) -> - [ - default_tree, - ftpc_worker, - tftpd_worker, - httpd_subtree, - httpc_subtree - ]. +all() -> +[default_tree, ftpc_worker, tftpd_worker, httpd_subtree, + httpc_subtree]. + +groups() -> + []. + +init_per_group(_GroupName, Config) -> + Config. + +end_per_group(_GroupName, Config) -> + Config. + %%-------------------------------------------------------------------- %% Function: init_per_suite(Config) -> Config |