File: kernel_test_lib.hrl

package info (click to toggle)
erlang 1%3A27.3.4.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 225,000 kB
  • sloc: erlang: 1,658,966; ansic: 405,769; cpp: 177,850; xml: 82,435; makefile: 15,031; sh: 14,401; lisp: 9,812; java: 8,603; asm: 6,541; perl: 5,836; python: 5,484; sed: 72
file content (94 lines) | stat: -rw-r--r-- 3,678 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
%%
%% %CopyrightBegin%
%% 
%% Copyright Ericsson AB 2020-2024. All Rights Reserved.
%% 
%% Licensed under the Apache License, Version 2.0 (the "License");
%% you may not use this file except in compliance with the License.
%% You may obtain a copy of the License at
%%
%%     http://www.apache.org/licenses/LICENSE-2.0
%%
%% Unless required by applicable law or agreed to in writing, software
%% distributed under the License is distributed on an "AS IS" BASIS,
%% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
%% See the License for the specific language governing permissions and
%% limitations under the License.
%% 
%% %CopyrightEnd%
%%

-ifndef(kernel_test_lib_hrl).
-define(kernel_test_lib_hrl, true).

-define(LIB,                     kernel_test_lib).

-define(LOOKUP(__Key__, __Config__, __Default__),
        ?LIB:lookup(__Key__, __Config__, __Default__)).
-define(GOOD_HOSTS(__N__), ?LIB:good_hosts(__N__)).

-define(SKIPT(R),                throw({skip, R})).
-define(SKIPE(R),                exit({skip, R})).

-define(TC_TRY(Case, TC),                  ?LIB:tc_try(Case, TC)).
-define(TC_TRY(Case, Cond, TC),            ?LIB:tc_try(Case, Cond, TC)).
-define(TC_TRY(Case, Pre, TC, Post),       ?LIB:tc_try(Case, Pre,TC,Post)).
-define(TC_TRY(Case, Cond, Pre, TC, Post), ?LIB:tc_try(Case, Cond, Pre,TC,Post)).

-define(SOCKET_TYPE(C),          ?LIB:socket_type(C)).
-define(LISTEN(C),               ?LIB:listen(C, 0, [])).
-define(LISTEN(C, P),            ?LIB:listen(C, P, [])).
-define(LISTEN(C, P, O),         ?LIB:listen(C, P, O)).
-define(CONNECT(__C__, __H__, __P__),
        ?LIB:connect(__C__, __H__, __P__, [])).
-define(CONNECT(__C__, __H__, __P__, __O__),
        ?LIB:connect(__C__, __H__, __P__, __O__)).
-define(CONNECT(__C__, __H__, __P__, __O__, __T__),
        ?LIB:connect(__C__, __H__, __P__, __O__, __T__)).

-define(OPEN(C),                 ?LIB:open(C, 0, [])).
-define(OPEN(C, P),              ?LIB:open(C, P, [])).
-define(OPEN(C, P, O),           ?LIB:open(C, P, O)).

-define(INET_BACKEND_OPTS(C),    ?LIB:inet_backend_opts(C)).
-define(EXPLICIT_INET_BACKEND(), ?LIB:explicit_inet_backend()).
-define(TEST_INET_BACKENDS(),    ?LIB:test_inet_backends()).
-define(WHICH_INET_BACKEND(C),   ?LIB:which_inet_backend(C)).
-define(IS_SOCKET_BACKEND(C),    ?LIB:is_socket_backend(C)).

-define(ENSURE_NOT_DOG_SLOW(C, L), ?LIB:ensure_not_dog_slow((C), (L))).

-define(HAS_SUPPORT_IPV4(),      ?LIB:has_support_ipv4()).
-define(HAS_SUPPORT_IPV6(),      ?LIB:has_support_ipv6()).
-define(WHICH_LOCAL_ADDR(D),     ?LIB:which_local_addr((D))).

-define(UNIQ_NODE_NAME,
  list_to_atom(?MODULE_STRING ++ "__" ++
               atom_to_list(?FUNCTION_NAME) ++ "_" ++
               integer_to_list(erlang:unique_integer([positive])))).

-define(START_NODE(__N__, __A__),
        ?LIB:start_node(__N__, __A__)).
-define(START_NODE(__N__, __A__, __O__),
        ?LIB:start_node(__N__, __A__, __O__)).

-define(STOP_NODE(__N__),        ?LIB:stop_node((__N__))).

-define(MQ(),                    ?LIB:mq()).
-define(MQ(P),                   ?LIB:mq((P))).
               
-define(F(FORMAT, ARGS),         ?LIB:f((FORMAT), (ARGS))).
-define(P(F),                    ?LIB:print(F)).
-define(P(F,A),                  ?LIB:print(F, A)).
-define(FTS(),                   ?LIB:formated_timestamp()).

-define(SECS(I),                 timer:seconds(I)).
-define(MINS(I),                 timer:minutes(I)).

-define(SLEEP(T),                ct:sleep(T)).
-define(TT(T),                   ct:timetrap(T)).

-define(TS(),                    ?LIB:ts()).
-define(TS(TU),                  ?LIB:ts((TU))).

-endif. % -ifdef(kernel_test_lib_hrl).