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/cleanup.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/cleanup.erl')
-rw-r--r-- | lib/debugger/test/cleanup.erl | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/lib/debugger/test/cleanup.erl b/lib/debugger/test/cleanup.erl index 59b4c35ac7..5f1ea71d2e 100644 --- a/lib/debugger/test/cleanup.erl +++ b/lib/debugger/test/cleanup.erl @@ -20,11 +20,22 @@ %% -module(cleanup). --export([all/1, cleanup/1]). +-export([all/0,groups/0,init_per_group/2,end_per_group/2, cleanup/1]). --include("test_server.hrl"). +-include_lib("test_server/include/test_server.hrl"). + +all() -> +[cleanup]. + +groups() -> + []. + +init_per_group(_GroupName, Config) -> + Config. + +end_per_group(_GroupName, Config) -> + Config. -all(suite) -> {req, [interpreter], [cleanup]}. cleanup(suite) -> []; cleanup(_) -> |