diff options
author | Lukas Larsson <[email protected]> | 2010-10-12 10:35:07 +0200 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2011-02-17 17:25:12 +0100 |
commit | a995b3b416f214b6d6e06d9e3cf0fed3c7096210 (patch) | |
tree | 5fd13e97b553455728cb5608f45ffd86eb9e141e /lib/runtime_tools/test/runtime_tools_SUITE.erl | |
parent | f46420139c89668f24f9b86e80f0f93fbbb9827b (diff) | |
download | otp-a995b3b416f214b6d6e06d9e3cf0fed3c7096210.tar.gz otp-a995b3b416f214b6d6e06d9e3cf0fed3c7096210.tar.bz2 otp-a995b3b416f214b6d6e06d9e3cf0fed3c7096210.zip |
Update runtime_tools tests to conform with common_test standard
Diffstat (limited to 'lib/runtime_tools/test/runtime_tools_SUITE.erl')
-rw-r--r-- | lib/runtime_tools/test/runtime_tools_SUITE.erl | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/lib/runtime_tools/test/runtime_tools_SUITE.erl b/lib/runtime_tools/test/runtime_tools_SUITE.erl index 84e255e126..61afd37ef0 100644 --- a/lib/runtime_tools/test/runtime_tools_SUITE.erl +++ b/lib/runtime_tools/test/runtime_tools_SUITE.erl @@ -17,10 +17,10 @@ %% %CopyrightEnd% %% -module(runtime_tools_SUITE). --include("test_server.hrl"). +-include_lib("test_server/include/test_server.hrl"). %% Test server specific exports --export([all/1]). +-export([all/0,groups/0,init_per_group/2,end_per_group/2]). -export([init_per_testcase/2, end_per_testcase/2]). %% Test cases @@ -38,8 +38,18 @@ end_per_testcase(_Case, Config) -> ?t:timetrap_cancel(Dog), ok. -all(suite) -> - [app_file]. +all() -> +[app_file]. + +groups() -> + []. + +init_per_group(_GroupName, Config) -> + Config. + +end_per_group(_GroupName, Config) -> + Config. + app_file(suite) -> []; |