aboutsummaryrefslogtreecommitdiffstats
path: root/erts/test/erl_print_SUITE.erl
diff options
context:
space:
mode:
authorLukas Larsson <[email protected]>2010-10-12 10:51:22 +0200
committerLukas Larsson <[email protected]>2011-02-17 17:28:28 +0100
commitafda520a493cfc6dda951d0881d28190f564ec08 (patch)
treefb21b65fe9b0b1a34933ee68e869fae63f4fbaaa /erts/test/erl_print_SUITE.erl
parentcbd5fd9daadf1f46c718774732a65cf830b64f94 (diff)
downloadotp-afda520a493cfc6dda951d0881d28190f564ec08.tar.gz
otp-afda520a493cfc6dda951d0881d28190f564ec08.tar.bz2
otp-afda520a493cfc6dda951d0881d28190f564ec08.zip
Update system tests to conform with common_test standard
Diffstat (limited to 'erts/test/erl_print_SUITE.erl')
-rw-r--r--erts/test/erl_print_SUITE.erl27
1 files changed, 16 insertions, 11 deletions
diff --git a/erts/test/erl_print_SUITE.erl b/erts/test/erl_print_SUITE.erl
index 3bb7d4d016..5fd2bb5790 100644
--- a/erts/test/erl_print_SUITE.erl
+++ b/erts/test/erl_print_SUITE.erl
@@ -32,14 +32,24 @@
-define(DEFAULT_TIMEOUT, ?t:minutes(10)).
--export([all/1, init_per_testcase/2, fin_per_testcase/2]).
+-export([all/0,groups/0,init_per_group/2,end_per_group/2, init_per_testcase/2, fin_per_testcase/2]).
-export([erlang_display/1, integer/1, float/1, string/1, character/1, snprintf/1, quote/1]).
-include_lib("test_server/include/test_server.hrl").
-all(doc) -> [];
-all(suite) -> test_cases().
+all() ->
+test_cases().
+
+groups() ->
+ [].
+
+init_per_group(_GroupName, Config) ->
+ Config.
+
+end_per_group(_GroupName, Config) ->
+ Config.
+
%%
%%
@@ -47,14 +57,9 @@ all(suite) -> test_cases().
%%
%%
-test_cases() ->
- [erlang_display,
- integer,
- float,
- string,
- character,
- snprintf,
- quote].
+test_cases() ->
+[erlang_display, integer, float, string, character,
+ snprintf, quote].
erlang_display(doc) -> [];
erlang_display(suite) -> [];