diff options
author | Lukas Larsson <[email protected]> | 2010-10-12 10:30:46 +0200 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2011-02-17 17:18:45 +0100 |
commit | 4a1a40f8ce37e1790c0b519ba2e339b8dc96d770 (patch) | |
tree | a8724bc81eeb7b727fd92044c0d4d963bbc10e6d /lib/tools/test/make_SUITE.erl | |
parent | 95f687c351e8d01cb41700649e89799192edc0dc (diff) | |
download | otp-4a1a40f8ce37e1790c0b519ba2e339b8dc96d770.tar.gz otp-4a1a40f8ce37e1790c0b519ba2e339b8dc96d770.tar.bz2 otp-4a1a40f8ce37e1790c0b519ba2e339b8dc96d770.zip |
Update tools tests to conform with common_test standard
Diffstat (limited to 'lib/tools/test/make_SUITE.erl')
-rw-r--r-- | lib/tools/test/make_SUITE.erl | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/lib/tools/test/make_SUITE.erl b/lib/tools/test/make_SUITE.erl index 72dccdb465..d0692c9d6a 100644 --- a/lib/tools/test/make_SUITE.erl +++ b/lib/tools/test/make_SUITE.erl @@ -18,12 +18,12 @@ %% -module(make_SUITE). --export([all/1, make_all/1, make_files/1]). +-export([all/0,groups/0,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]). --include("test_server.hrl"). +-include_lib("test_server/include/test_server.hrl"). -include_lib("kernel/include/file.hrl"). @@ -35,9 +35,19 @@ %% that the file :"test5.erl" shall be compiled with the 'S' option, %% i.e. produce "test5.S" instead of "test5.<objext>" -all(suite) -> [make_all, make_files, - {conf, otp_6057_init, - [otp_6057_a,otp_6057_b,otp_6057_c], otp_6057_end}]. +all() -> +[make_all, make_files, otp_6057_a, otp_6057_b, + otp_6057_c]. + +groups() -> + []. + +init_per_group(_GroupName, Config) -> + Config. + +end_per_group(_GroupName, Config) -> + Config. + test_files() -> ["test1", "test2", "test3", "test4"]. |