~clint-fewbar/ubuntu/precise/erlang/merge-15b

« back to all changes in this revision

Viewing changes to lib/cosEvent/test/generated_SUITE.erl

  • Committer: Package Import Robot
  • Author(s): Sergei Golovan
  • Date: 2011-12-15 19:20:10 UTC
  • mfrom: (1.1.18) (3.5.15 sid)
  • mto: (3.5.16 sid)
  • mto: This revision was merged to the branch mainline in revision 33.
  • Revision ID: package-import@ubuntu.com-20111215192010-jnxcfe3tbrpp0big
Tags: 1:15.b-dfsg-1
* New upstream release.
* Upload to experimental because this release breaks external drivers
  API along with ABI, so several applications are to be fixed.
* Removed SSL patch because the old SSL implementation is removed from
  the upstream distribution.
* Removed never used patch which added native code to erlang beam files.
* Removed the erlang-docbuilder binary package because the docbuilder
  application was dropped by upstream.
* Documented dropping ${erlang-docbuilder:Depends} substvar in
  erlang-depends(1) manpage.
* Made erlang-base and erlang-base-hipe provide virtual package
  erlang-abi-15.b (the number means the first erlang version, which
  provides current ABI).

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
%%
3
3
%% %CopyrightBegin%
4
4
%% 
5
 
%% Copyright Ericsson AB 2004-2009. All Rights Reserved.
 
5
%% Copyright Ericsson AB 2004-2011. All Rights Reserved.
6
6
%% 
7
7
%% The contents of this file are subject to the Erlang Public License,
8
8
%% Version 1.1, (the "License"); you may not use this file except in
25
25
 
26
26
-module(generated_SUITE).
27
27
 
28
 
-include("test_server.hrl").
 
28
-include_lib("test_server/include/test_server.hrl").
29
29
-include_lib("orber/include/corba.hrl").
30
30
 
31
31
-define(default_timeout, ?t:minutes(3)).
71
71
%%-----------------------------------------------------------------
72
72
%% External exports
73
73
%%-----------------------------------------------------------------
74
 
-export([all/1]).
 
74
-export([all/0, suite/0,groups/0,init_per_suite/1, end_per_suite/1, 
 
75
         init_per_group/2,end_per_group/2]).
75
76
 
76
77
%%-----------------------------------------------------------------
77
78
%% Internal exports
78
79
%%-----------------------------------------------------------------
79
 
-export([]).
80
80
-compile(export_all).
81
81
 
82
82
%%-----------------------------------------------------------------
84
84
%% Args: 
85
85
%% Returns: 
86
86
%%-----------------------------------------------------------------
87
 
all(doc) -> ["This suite is for testing IC generated files"];
88
 
all(suite) -> 
89
 
    ['CosEventChannelAdmin_AlreadyConnected', 'CosEventChannelAdmin_TypeError',
 
87
suite() -> [{ct_hooks,[ts_install_cth]}].
 
88
 
 
89
all() -> 
 
90
    ['CosEventChannelAdmin_AlreadyConnected',
 
91
     'CosEventChannelAdmin_TypeError',
90
92
     'CosEventComm_Disconnected',
91
 
     'CosEventChannelAdmin_ConsumerAdmin', 'CosEventChannelAdmin_EventChannel',
92
 
     'CosEventChannelAdmin_ProxyPullConsumer', 'CosEventChannelAdmin_ProxyPullSupplier',
93
 
     'CosEventChannelAdmin_ProxyPushConsumer', 'CosEventChannelAdmin_ProxyPushSupplier',
94
 
     'CosEventChannelAdmin_SupplierAdmin', oe_CosEventComm_CAdmin,
95
 
     oe_CosEventComm_Channel, oe_CosEventComm_Event, oe_CosEventComm_PullerS,
96
 
     oe_CosEventComm_PusherS, 'CosEventComm_PullConsumer', 
97
 
     'CosEventComm_PullSupplier', 'CosEventComm_PushConsumer',
 
93
     'CosEventChannelAdmin_ConsumerAdmin',
 
94
     'CosEventChannelAdmin_EventChannel',
 
95
     'CosEventChannelAdmin_ProxyPullConsumer',
 
96
     'CosEventChannelAdmin_ProxyPullSupplier',
 
97
     'CosEventChannelAdmin_ProxyPushConsumer',
 
98
     'CosEventChannelAdmin_ProxyPushSupplier',
 
99
     'CosEventChannelAdmin_SupplierAdmin',
 
100
     oe_CosEventComm_CAdmin, oe_CosEventComm_Channel,
 
101
     oe_CosEventComm_Event, oe_CosEventComm_PullerS,
 
102
     oe_CosEventComm_PusherS, 'CosEventComm_PullConsumer',
 
103
     'CosEventComm_PullSupplier',
 
104
     'CosEventComm_PushConsumer',
98
105
     'CosEventComm_PushSupplier'].
99
106
 
 
107
groups() -> 
 
108
    [].
 
109
 
 
110
init_per_suite(Config) ->
 
111
    Config.
 
112
 
 
113
end_per_suite(_Config) ->
 
114
    ok.
 
115
 
 
116
init_per_group(_GroupName, Config) ->
 
117
    Config.
 
118
 
 
119
end_per_group(_GroupName, Config) ->
 
120
    Config.
 
121
 
 
122
 
100
123
%%-----------------------------------------------------------------
101
124
%% Init and cleanup functions.
102
125
%%-----------------------------------------------------------------
105
128
    [{watchdog, Dog}|Config].
106
129
 
107
130
 
108
 
fin_per_testcase(_Case, Config) ->
 
131
end_per_testcase(_Case, Config) ->
109
132
    Dog = ?config(watchdog, Config),
110
133
    test_server:timetrap_cancel(Dog),
111
134
    ok.