diff options
Diffstat (limited to 'lib/stdlib/test/win32reg_SUITE.erl')
| -rw-r--r-- | lib/stdlib/test/win32reg_SUITE.erl | 28 | 
1 files changed, 20 insertions, 8 deletions
| diff --git a/lib/stdlib/test/win32reg_SUITE.erl b/lib/stdlib/test/win32reg_SUITE.erl index c8cc82f61e..d3984ba67c 100644 --- a/lib/stdlib/test/win32reg_SUITE.erl +++ b/lib/stdlib/test/win32reg_SUITE.erl @@ -1,7 +1,7 @@  %%  %% %CopyrightBegin%  %% -%% Copyright Ericsson AB 1997-2010. All Rights Reserved. +%% Copyright Ericsson AB 1997-2011. All Rights Reserved.  %%  %% The contents of this file are subject to the Erlang Public License,  %% Version 1.1, (the "License"); you may not use this file except in @@ -18,22 +18,34 @@  %%  -module(win32reg_SUITE). --export([all/1,long/1,evil_write/1]). --export([ostype/1,fini/1]). +-export([all/0, suite/0,groups/0,init_per_suite/1, end_per_suite/1,  +	 init_per_group/2,end_per_group/2,long/1,evil_write/1]). --include("test_server.hrl"). +-include_lib("test_server/include/test_server.hrl"). -all(suite) -> -    [{conf,ostype,[long,evil_write],fini}]. +suite() -> [{ct_hooks,[ts_install_cth]}]. -ostype(Config) when is_list(Config) -> +all() ->  +    [long, evil_write]. + +groups() ->  +    []. + +init_per_group(_GroupName, Config) -> +    Config. + +end_per_group(_GroupName, Config) -> +    Config. + + +init_per_suite(Config) when is_list(Config) ->      case os:type() of  	{win32, _} ->  	    Config;  	_ ->  	    {skip,"Doesn't run on UNIX."}      end. -fini(Config) when is_list(Config) -> +end_per_suite(Config) when is_list(Config) ->      Config.  long(doc) -> "Test long keys and entries (OTP-3446)."; | 
