~ubuntu-branches/ubuntu/trusty/erlang/trusty

« back to all changes in this revision

Viewing changes to lib/test_server/src/ts.config

  • Committer: Bazaar Package Importer
  • Author(s): Clint Byrum
  • Date: 2011-05-05 15:48:43 UTC
  • mfrom: (3.5.13 sid)
  • Revision ID: james.westby@ubuntu.com-20110505154843-0om6ekzg6m7ugj27
Tags: 1:14.b.2-dfsg-3ubuntu1
* Merge from debian unstable.  Remaining changes:
  - Drop libwxgtk2.8-dev build dependency. Wx isn't in main, and not
    supposed to.
  - Drop erlang-wx binary.
  - Drop erlang-wx dependency from -megaco, -common-test, and -reltool, they
    do not really need wx. Also drop it from -debugger; the GUI needs wx,
    but it apparently has CLI bits as well, and is also needed by -megaco,
    so let's keep the package for now.
  - debian/patches/series: Do what I meant, and enable build-options.patch
    instead.
* Additional changes:
  - Drop erlang-wx from -et
* Dropped Changes:
  - patches/pcre-crash.patch: CVE-2008-2371: outer level option with
    alternatives caused crash. (Applied Upstream)
  - fix for ssl certificate verification in newSSL: 
    ssl_cacertfile_fix.patch (Applied Upstream)
  - debian/patches/series: Enable native.patch again, to get stripped beam
    files and reduce the package size again. (build-options is what
    actually accomplished this)
  - Remove build-options.patch on advice from upstream and because it caused
    odd build failures.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
%% -*- erlang -*-
2
 
{ipv6_hosts,[otptest06,otptest08,sauron,iluvatar]}.
3
2
 
4
 
%%% Change these to suite the environment.
5
 
%%% test_hosts are looked up using "ypmatch xx yy zz hosts"
6
 
{test_hosts,
7
 
 [bingo, hurin, turin, gandalf, super,
8
 
  merry, nenya, sam, elrond, isildur]}.
 
3
%%% Change these to suite the environment. See the inet_SUITE for info about
 
4
%%% what they are used for.
 
5
%%% test_hosts are looked up using "ypmatch xx yy zz hosts.byname"
 
6
%{test_hosts,[my_ip4_host]}.
9
7
 
10
8
%% IPv4 host only - no ipv6 entry must exist!
11
 
{test_host_ipv4_only,
12
 
 {"isildur",                                    %Short hostname
13
 
  "isildur.du.uab.ericsson.se",                 %Long hostname
14
 
  "134.138.177.24",                             %IP string
15
 
  {134,138,177,24},                             %IP tuple
16
 
  ["isildur"],                                  %Any aliases
17
 
  "::ffff:134.138.177.24",                      %IPv6 string (compatibilty addr)
18
 
  {0,0,0,0,0,65535,34442,45336}                 %IPv6 tuple
19
 
 }}.
20
 
 
21
 
{test_host_ipv6_only,
22
 
 {"otptest06",                                  %Short hostname
23
 
  "otptest06.du.uab.ericsson.se",               %Long hostname
24
 
  "fec0::a00:20ff:feb2:b4a9",                   %IPv6 string
25
 
  {65216,0,0,0,2560,8447,65202,46249},          %IPv6 tuple
26
 
  ["otptest06-ip6"]                             %Aliases.
27
 
 }}.
28
 
 
29
 
 
30
 
 
31
 
{test_dummy_host, {"dummy",
32
 
                   "dummy.du.uab.ericsson.se",
33
 
                   "192.138.177.1",
34
 
                   {192,138,177,1},
35
 
                   ["dummy"],
36
 
                   "::ffff:192.138.177.1",
37
 
                   {0,0,0,0,0,65535,49290,45313}
38
 
                  }}.
39
 
 
40
 
{test_dummy_ipv6_host, {"dummy6",
41
 
                        "dummy6.du.uab.ericsson.se",
42
 
                        "fec0::a00:20ff:feb2:6666",
43
 
                        {65216,0,0,0,2560,8447,65202,26214},
44
 
                        ["dummy6-ip6"]
45
 
                       }}.
 
9
%{test_host_ipv4_only,
 
10
% {"my_ip4_host",                               %Short hostname
 
11
%  "my_ip4_host.mydomain.com",                  %Long hostname
 
12
%  "10.10.0.1",                                 %IP string
 
13
%  {10,10,0,1},                                 %IP tuple
 
14
%  ["my_ip4_host"],                             %Any aliases
 
15
%  "::ffff:10.10.0.1",                          %IPv6 string (compatibilty addr)
 
16
%  {0,0,0,0,0,65535,2570,1}                     %IPv6 tuple
 
17
% }}.
 
18
 
 
19
%{test_dummy_host, {"dummy",
 
20
%                  "dummy.mydomain.com",
 
21
%                  "192.168.0.1",
 
22
%                  {192,168,0,1},
 
23
%                  ["dummy"],
 
24
%                  "::ffff:192.168.0.1",
 
25
%                  {0,0,0,0,0,65535,49320,1}
 
26
%                 }}.
 
27
 
 
28
 
 
29
%%% test_hosts are looked up using "ypmatch xx yy zz ipnodes.byname"
 
30
%{ipv6_hosts,[my_ip6_host]}.
 
31
 
 
32
 
 
33
%{test_host_ipv6_only,
 
34
% {"my_ip6_host",                               %Short hostname
 
35
%  "my_ip6_host.mydomain.com",                  %Long hostname
 
36
%  "::2eff:f2b0:1ea0",                          %IPv6 string
 
37
%  {0,0,0,0,0,12031,62128,7840},                %IPv6 tuple
 
38
%  ["my_ip6_host"]                              %Aliases.
 
39
% }}.
 
40
 
 
41
%{test_dummy_ipv6_host, {"dummy6",
 
42
%                       "dummy6.mydomain.com",
 
43
%                       "127::1",
 
44
%                       {295,0,0,0,0,0,0,1},
 
45
%                       ["dummy6-ip6"]
 
46
%                      }}.