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

« back to all changes in this revision

Viewing changes to lib/inets/test/inets_appup_test.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:
28
28
-include("inets_test_lib.hrl").
29
29
 
30
30
 
31
 
% t()     -> megaco_test_lib:t(?MODULE).
32
 
% t(Case) -> megaco_test_lib:t({?MODULE, Case}).
 
31
                                                % t()     -> megaco_test_lib:t(?MODULE).
 
32
                                                % t(Case) -> megaco_test_lib:t({?MODULE, Case}).
33
33
 
34
34
 
35
35
%% Test server callbacks
36
36
init_per_testcase(_Case, Config) ->
37
37
    Config.
38
38
 
39
 
fin_per_testcase(_Case, Config) ->
40
 
    Config.
41
 
 
42
 
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
43
 
 
44
 
all(suite) ->
45
 
    Cases = 
46
 
        [
47
 
         appup
48
 
        ],
49
 
    {req, [], {conf, appup_init, Cases, appup_fin}}.
50
 
 
51
 
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
52
 
 
53
 
appup_init(suite) -> [];
54
 
appup_init(doc) -> [];
55
 
appup_init(Config) when is_list(Config) ->
 
39
end_per_testcase(_Case, Config) ->
 
40
    Config.
 
41
 
 
42
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 
43
 
 
44
all() -> 
 
45
    [appup].
 
46
 
 
47
groups() -> 
 
48
    [].
 
49
 
 
50
init_per_group(_GroupName, Config) ->
 
51
    Config.
 
52
 
 
53
end_per_group(_GroupName, Config) ->
 
54
    Config.
 
55
 
 
56
 
 
57
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 
58
 
 
59
init_per_suite(suite) -> [];
 
60
init_per_suite(doc) -> [];
 
61
init_per_suite(Config) when is_list(Config) ->
56
62
    AppFile   = file_name(inets, ".app"),
57
63
    AppupFile = file_name(inets, ".appup"),
58
64
    [{app_file, AppFile}, {appup_file, AppupFile}|Config].
63
69
    filename:join([LibDir, "ebin", atom_to_list(App) ++ Ext]).
64
70
 
65
71
 
66
 
appup_fin(suite) -> [];
67
 
appup_fin(doc) -> [];
68
 
appup_fin(Config) when is_list(Config) ->
 
72
end_per_suite(suite) -> [];
 
73
end_per_suite(doc) -> [];
 
74
end_per_suite(Config) when is_list(Config) ->
69
75
    Config.
70
76
 
71
77