aboutsummaryrefslogtreecommitdiffstats
path: root/lib/os_mon/test/os_mon_SUITE.erl
diff options
context:
space:
mode:
authorLukas Larsson <[email protected]>2010-10-12 10:52:14 +0200
committerLukas Larsson <[email protected]>2011-02-17 17:28:28 +0100
commit60c006def535e129f73d3834dba9f8b2bfa74813 (patch)
tree14ef095fed4b18c59a0a9c05e32b6d818d967ca1 /lib/os_mon/test/os_mon_SUITE.erl
parenta7cf522a129b3d707141bb681fc5c074bdca5e69 (diff)
downloadotp-60c006def535e129f73d3834dba9f8b2bfa74813.tar.gz
otp-60c006def535e129f73d3834dba9f8b2bfa74813.tar.bz2
otp-60c006def535e129f73d3834dba9f8b2bfa74813.zip
Update os_mon tests to conform with common_test standard
Diffstat (limited to 'lib/os_mon/test/os_mon_SUITE.erl')
-rw-r--r--lib/os_mon/test/os_mon_SUITE.erl24
1 files changed, 17 insertions, 7 deletions
diff --git a/lib/os_mon/test/os_mon_SUITE.erl b/lib/os_mon/test/os_mon_SUITE.erl
index 033c61e3c8..f5dea6a92d 100644
--- a/lib/os_mon/test/os_mon_SUITE.erl
+++ b/lib/os_mon/test/os_mon_SUITE.erl
@@ -17,10 +17,10 @@
%% %CopyrightEnd%
%%
-module(os_mon_SUITE).
--include("test_server.hrl").
+-include_lib("test_server/include/test_server.hrl").
%% Test server specific exports
--export([all/1]).
+-export([all/0,groups/0,init_per_group/2,end_per_group/2]).
-export([init_per_testcase/2, end_per_testcase/2]).
%% Test cases
@@ -38,11 +38,21 @@ end_per_testcase(_Case, Config) ->
test_server:timetrap_cancel(Dog),
ok.
-all(suite) ->
- case ?t:os_type() of
- {unix, sunos} -> [app_file, config];
- _OS -> [app_file]
- end.
+all() ->
+case test_server:os_type() of
+ {unix, sunos} -> [app_file, config];
+ _OS -> [app_file]
+end.
+
+groups() ->
+ [].
+
+init_per_group(_GroupName, Config) ->
+ Config.
+
+end_per_group(_GroupName, Config) ->
+ Config.
+
app_file(suite) ->
[];