~ubuntu-branches/debian/squeeze/erlang/squeeze

« back to all changes in this revision

Viewing changes to lib/snmp/test/snmp_SUITE.erl

  • Committer: Bazaar Package Importer
  • Author(s): Erlang Packagers, Sergei Golovan
  • Date: 2006-12-03 17:07:44 UTC
  • mfrom: (2.1.11 feisty)
  • Revision ID: james.westby@ubuntu.com-20061203170744-rghjwupacqlzs6kv
Tags: 1:11.b.2-4
[ Sergei Golovan ]
Fixed erlang-base and erlang-base-hipe prerm scripts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
         init_per_testcase/2, fin_per_testcase/2
22
22
        ]).
23
23
 
24
 
-export([app_test/1,
 
24
-export([app/1, compiler/1, misc/1, agent/1, manager/1]).
 
25
 
 
26
-export([
 
27
         app_test/1,
25
28
         appup_test/1,
26
 
         snmp_test/1]).
 
29
         compiler_test/1,
 
30
         conf_test/1,
 
31
         pdus_test/1,
 
32
         log_test/1,
 
33
         note_store_test/1,
 
34
         mibs_test/1,
 
35
         nfilter_test/1,
 
36
         agent_test/1,
 
37
         manager_config_test/1,
 
38
         manager_user_test/1,
 
39
         manager_test/1
 
40
        ]).
27
41
 
28
42
%%
29
43
%% -----
30
44
%%
31
45
 
32
 
init_per_testcase(Case, Config) when list(Config) ->
 
46
init_per_testcase(_Case, Config) when list(Config) ->
33
47
    Config.
34
48
 
35
 
fin_per_testcase(Case, Config) when list(Config) ->
 
49
fin_per_testcase(_Case, Config) when list(Config) ->
36
50
    Config.
37
51
 
38
52
 
41
55
 
42
56
all(doc) ->
43
57
    ["Test suites for the snmp application.",
44
 
     "There are five different test sub-suites."];
 
58
     "There are eight different sub test-suites."];
45
59
 
46
60
all(suite) ->
47
61
    [
 
62
     app,
 
63
     compiler,
 
64
     misc,
 
65
     agent,
 
66
     manager
 
67
 
 
68
    ].
 
69
 
 
70
app(suite) ->
 
71
    [
48
72
     app_test,
49
 
     appup_test,
50
 
     snmp_test
51
 
    ].
 
73
     appup_test
 
74
     ].
 
75
 
 
76
compiler(suite) ->
 
77
    [
 
78
     compiler_test
 
79
    ].
 
80
 
 
81
misc(suite) ->
 
82
    [
 
83
     conf_test,
 
84
     pdus_test,
 
85
     log_test,
 
86
     note_store_test
 
87
    ].
 
88
 
 
89
agent(suite) ->
 
90
    [
 
91
     mibs_test,
 
92
     nfilter_test,
 
93
     agent_test
 
94
    ].
 
95
 
 
96
manager(suite) ->
 
97
    [
 
98
     manager_config_test,
 
99
     manager_user_test,
 
100
     manager_test
 
101
    ].
 
102
 
52
103
 
53
104
app_test(suite) ->
54
105
    [{snmp_app_test, all}].
58
109
    [{snmp_appup_test, all}].
59
110
 
60
111
 
61
 
snmp_test(suite) ->
62
 
    [{snmp_test, all}].
 
112
compiler_test(suite) ->
 
113
    [{snmp_compiler_test, all}].  
 
114
 
 
115
 
 
116
conf_test(suite) ->
 
117
    [{snmp_conf_test, all}].  
 
118
 
 
119
 
 
120
pdus_test(suite) ->
 
121
    [{snmp_pdus_test, all}].  
 
122
 
 
123
 
 
124
log_test(suite) ->
 
125
    [{snmp_log_test, all}].  
 
126
 
 
127
 
 
128
note_store_test(suite) ->
 
129
    [{snmp_note_store_test, all}].  
 
130
 
 
131
 
 
132
mibs_test(suite) ->
 
133
    [{snmp_agent_mibs_test, all}].
 
134
 
 
135
 
 
136
nfilter_test(suite) ->
 
137
    [{snmp_agent_nfilter_test, all}].
 
138
 
 
139
 
 
140
agent_test(suite) ->
 
141
    [{snmp_agent_test, all}].
 
142
 
 
143
 
 
144
manager_config_test(suite) ->
 
145
    [{snmp_manager_config_test, all}].  
 
146
 
 
147
 
 
148
manager_user_test(suite) ->
 
149
    [{snmp_manager_user_test, all}].  
 
150
 
 
151
 
 
152
manager_test(suite) ->
 
153
    [{snmp_manager_test, all}].  
63
154
 
64
155