diff options
author | Lukas Larsson <[email protected]> | 2010-10-12 10:40:58 +0200 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2011-02-17 17:25:13 +0100 |
commit | a424e5a7dffcbf4685ee3be9fdec7002fa03294b (patch) | |
tree | 16a8be67ee675b51686f7331bf68abb9490d8c98 /lib/debugger/test/bs_utf_SUITE.erl | |
parent | 1137a924c290f72ed9c2213b38caaef8230cb005 (diff) | |
download | otp-a424e5a7dffcbf4685ee3be9fdec7002fa03294b.tar.gz otp-a424e5a7dffcbf4685ee3be9fdec7002fa03294b.tar.bz2 otp-a424e5a7dffcbf4685ee3be9fdec7002fa03294b.zip |
Update debugger tests to conform with common_test standard
Diffstat (limited to 'lib/debugger/test/bs_utf_SUITE.erl')
-rw-r--r-- | lib/debugger/test/bs_utf_SUITE.erl | 28 |
1 files changed, 19 insertions, 9 deletions
diff --git a/lib/debugger/test/bs_utf_SUITE.erl b/lib/debugger/test/bs_utf_SUITE.erl index a114bc2b46..c15c4be351 100644 --- a/lib/debugger/test/bs_utf_SUITE.erl +++ b/lib/debugger/test/bs_utf_SUITE.erl @@ -21,20 +21,30 @@ -module(bs_utf_SUITE). --export([all/1,init_all/1,finish_all/1, +-export([all/0,groups/0,init_per_group/2,end_per_group/2,init_per_suite/1,end_per_suite/1, init_per_testcase/2,end_per_testcase/2, utf8_roundtrip/1,unused_utf_char/1,utf16_roundtrip/1, utf32_roundtrip/1,guard/1,extreme_tripping/1]). --include("test_server.hrl"). +-include_lib("test_server/include/test_server.hrl"). -compile([no_jopt,time]). -all(suite) -> - [{conf,init_all,cases(),finish_all}]. +all() -> +[cases()]. -cases() -> - [utf8_roundtrip,unused_utf_char,utf16_roundtrip, - utf32_roundtrip,guard,extreme_tripping]. +groups() -> + []. + +init_per_group(_GroupName, Config) -> + Config. + +end_per_group(_GroupName, Config) -> + Config. + + +cases() -> +[utf8_roundtrip, unused_utf_char, utf16_roundtrip, + utf32_roundtrip, guard, extreme_tripping]. init_per_testcase(_Case, Config) -> test_lib:interpret(?MODULE), @@ -46,12 +56,12 @@ end_per_testcase(_Case, Config) -> ?t:timetrap_cancel(Dog), ok. -init_all(Config) when is_list(Config) -> +init_per_suite(Config) when is_list(Config) -> ?line test_lib:interpret(?MODULE), ?line true = lists:member(?MODULE, int:interpreted()), ok. -finish_all(Config) when is_list(Config) -> +end_per_suite(Config) when is_list(Config) -> ok. utf8_roundtrip(Config) when is_list(Config) -> |