aboutsummaryrefslogtreecommitdiffstats
path: root/lib/runtime_tools/test/erts_alloc_config_SUITE.erl
diff options
context:
space:
mode:
authorLukas Larsson <[email protected]>2010-10-12 10:35:07 +0200
committerLukas Larsson <[email protected]>2011-02-17 17:25:12 +0100
commita995b3b416f214b6d6e06d9e3cf0fed3c7096210 (patch)
tree5fd13e97b553455728cb5608f45ffd86eb9e141e /lib/runtime_tools/test/erts_alloc_config_SUITE.erl
parentf46420139c89668f24f9b86e80f0f93fbbb9827b (diff)
downloadotp-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/erts_alloc_config_SUITE.erl')
-rw-r--r--lib/runtime_tools/test/erts_alloc_config_SUITE.erl18
1 files changed, 14 insertions, 4 deletions
diff --git a/lib/runtime_tools/test/erts_alloc_config_SUITE.erl b/lib/runtime_tools/test/erts_alloc_config_SUITE.erl
index 83c3464427..13177ddcec 100644
--- a/lib/runtime_tools/test/erts_alloc_config_SUITE.erl
+++ b/lib/runtime_tools/test/erts_alloc_config_SUITE.erl
@@ -21,10 +21,10 @@
%-define(line_trace, 1).
--include("test_server.hrl").
+-include_lib("test_server/include/test_server.hrl").
%-compile(export_all).
--export([all/1, init_per_testcase/2, end_per_testcase/2]).
+-export([all/0,groups/0,init_per_group/2,end_per_group/2, init_per_testcase/2, end_per_testcase/2]).
%% Testcases
-export([basic/1]).
@@ -34,8 +34,18 @@
-define(DEFAULT_TIMEOUT, ?t:minutes(2)).
-all(doc) -> [];
-all(suite) -> [basic].
+all() ->
+[basic].
+
+groups() ->
+ [].
+
+init_per_group(_GroupName, Config) ->
+ Config.
+
+end_per_group(_GroupName, Config) ->
+ Config.
+
init_per_testcase(Case, Config) when is_list(Config) ->
[{testcase, Case},