diff options
author | Lukas Larsson <[email protected]> | 2010-10-12 10:51:22 +0200 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2011-02-17 17:28:28 +0100 |
commit | afda520a493cfc6dda951d0881d28190f564ec08 (patch) | |
tree | fb21b65fe9b0b1a34933ee68e869fae63f4fbaaa /erts/test/otp_SUITE.erl | |
parent | cbd5fd9daadf1f46c718774732a65cf830b64f94 (diff) | |
download | otp-afda520a493cfc6dda951d0881d28190f564ec08.tar.gz otp-afda520a493cfc6dda951d0881d28190f564ec08.tar.bz2 otp-afda520a493cfc6dda951d0881d28190f564ec08.zip |
Update system tests to conform with common_test standard
Diffstat (limited to 'erts/test/otp_SUITE.erl')
-rw-r--r-- | erts/test/otp_SUITE.erl | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/erts/test/otp_SUITE.erl b/erts/test/otp_SUITE.erl index 425ad31782..15c56fd6ea 100644 --- a/erts/test/otp_SUITE.erl +++ b/erts/test/otp_SUITE.erl @@ -19,7 +19,7 @@ -module(otp_SUITE). --export([all/1,init_per_suite/1,end_per_suite/1]). +-export([all/0,groups/0,init_per_group/2,end_per_group/2,init_per_suite/1,end_per_suite/1]). -export([undefined_functions/1,deprecated_not_in_obsolete/1, obsolete_but_not_deprecated/1,call_to_deprecated/1, call_to_size_1/1,strong_components/1]). @@ -28,10 +28,20 @@ -import(lists, [filter/2,foldl/3,foreach/2]). -all(suite) -> - [undefined_functions,deprecated_not_in_obsolete, - obsolete_but_not_deprecated,call_to_deprecated, - call_to_size_1,strong_components]. +all() -> +[undefined_functions, deprecated_not_in_obsolete, + obsolete_but_not_deprecated, call_to_deprecated, + call_to_size_1, strong_components]. + +groups() -> + []. + +init_per_group(_GroupName, Config) -> + Config. + +end_per_group(_GroupName, Config) -> + Config. + init_per_suite(Config) -> Dog = test_server:timetrap(?t:minutes(10)), |