aboutsummaryrefslogtreecommitdiffstats
path: root/lib/common_test/test/ct_netconfc_SUITE_data/netconfc_test_lib.hrl
blob: dcaad5ba9380a73b72d66ceb0e1cc3124dc45748 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
%% Default timetrap timeout (set in init_per_testcase).
-define(default_timeout, ?t:minutes(1)).

-define(NS,ns). % netconf server module
-define(LOCALHOST, "127.0.0.1").
-define(SSH_PORT, 2060).

-define(DEFAULT_SSH_OPTS,[{ssh,?LOCALHOST},
			  {port,?SSH_PORT},
			  {user,"xxx"},
			  {password,"xxx"}]).
-define(DEFAULT_SSH_OPTS(Dir), ?DEFAULT_SSH_OPTS++[{user_dir,Dir}]).

-define(ok,ok).