aboutsummaryrefslogtreecommitdiffstats
path: root/lib/tools/test/make_SUITE.erl
diff options
context:
space:
mode:
authorLukas Larsson <[email protected]>2010-12-14 17:52:01 +0100
committerLukas Larsson <[email protected]>2011-02-17 17:36:39 +0100
commit307dc266144daa134fc37495362af55a95c06f74 (patch)
tree7484955b12d3eba40d1c4a8b84aa5dc51e2f83e2 /lib/tools/test/make_SUITE.erl
parentdc8aa5d93676ac46e1d95598cfec767051a88d9a (diff)
downloadotp-307dc266144daa134fc37495362af55a95c06f74.tar.gz
otp-307dc266144daa134fc37495362af55a95c06f74.tar.bz2
otp-307dc266144daa134fc37495362af55a95c06f74.zip
Fix formatting for tools
Diffstat (limited to 'lib/tools/test/make_SUITE.erl')
-rw-r--r--lib/tools/test/make_SUITE.erl13
1 files changed, 7 insertions, 6 deletions
diff --git a/lib/tools/test/make_SUITE.erl b/lib/tools/test/make_SUITE.erl
index 5c6d388843..fa88a65443 100644
--- a/lib/tools/test/make_SUITE.erl
+++ b/lib/tools/test/make_SUITE.erl
@@ -18,7 +18,8 @@
%%
-module(make_SUITE).
--export([all/0, suite/0,groups/0,init_per_suite/1, end_per_suite/1, init_per_group/2,end_per_group/2, make_all/1, make_files/1]).
+-export([all/0, suite/0,groups/0,init_per_suite/1, end_per_suite/1,
+ init_per_group/2,end_per_group/2, make_all/1, make_files/1]).
-export([otp_6057_init/1,
otp_6057_a/1, otp_6057_b/1, otp_6057_c/1,
otp_6057_end/1]).
@@ -38,11 +39,11 @@
suite() -> [{suite_callbacks,[ts_install_scb]}].
all() ->
-[make_all, make_files, otp_6057_a, otp_6057_b,
- otp_6057_c].
+ [make_all, make_files, {group, otp_6057}].
groups() ->
- [].
+ [{otp_6057,[],[otp_6057_a, otp_6057_b,
+ otp_6057_c]}].
init_per_suite(Config) ->
Config.
@@ -51,10 +52,10 @@ end_per_suite(_Config) ->
ok.
init_per_group(_GroupName, Config) ->
- Config.
+ otp_6057_init(Config).
end_per_group(_GroupName, Config) ->
- Config.
+ otp_6057_end(Config).
test_files() -> ["test1", "test2", "test3", "test4"].