summaryrefslogtreecommitdiffstats
path: root/Templates/config.cfg
blob: e498115daafcb3c909201a4f53722bf1586759f5 (plain)
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
95
96
97
98
99
#############################################################################
## ATF Configuration File. This is input for the atf.py python script.
## This File contains various sections.
## The information under each section will be used for Selecting/Running Tests
#############################################################################

#############################################################################
## Section: [Keywords]
## 	Used to select the testcases tagged with keystring for test execution. 
## keystring: sanity 
##	Selects all testcases tagged with sanity keyword under given TestUnit
##	(This is used for Sanity Runs)
## keystring: art 
##	Selects all testcases tagged with art keyword under given TestUnit
##	(This is used for Regression Runs)
## Example:
##      keystring = art
##      keystring = sanity
#############################################################################
[Keywords]
keystring = 

#############################################################################
## Section: [WorkUnits]
## unit specifies glusterfs features (testuntis)  under test.
## Each TestUnit is directory under Glusterfs/TestUnits directory
## Example:
##      unit1 = Replication
##      unit2 = Replication/Self-heal
##      unit3 = Distribution
##      unit4 = Stripe
#############################################################################
[WorkUnits]
unit1 = 

#############################################################################
## Section: [ATFRoot]
## rootdir = absolute path of the directory where Automation Framework 
##	     is Installed
## Example:
##      rootdir = /ATF
##      rootdir = /home/qa/ATF
#############################################################################
[ATFRoot]
rootdir = 

#############################################################################
## Section: [SummaryLog]
## filename = FileName to Log SummaryLogs
## loglevel = LogLevel could be debug| info | warning | error
## Example:
##      filename = SummaryLog.out
##      loglevel = info
#############################################################################
[SummaryLog]
filename = 
loglevel = 

#############################################################################
## Section: [DetailLog]
## filename = FileName to Log DetailLogs of test case execution
## loglevel = LogLevel could be debug| info | warning | error
## Example:
##      filename = DetailLog.out
##      loglevel = info
#############################################################################
[DetailLog]
filename = 
loglevel = 

#############################################################################
## Section: [StdoutLog]
## do_log = true | false.
##	    If do_log = true, Log to STDOUT. Else, do not log to STDOUT. 
## loglevel = LogLevel could be debug| info | warning | error
## Example:
##      do_log = true
##      loglevel = info
#############################################################################
[StdoutLog]
do_log = 
loglevel = 

#############################################################################
## Section: [GlobalParam]
## filename =   Absolute path of the global Parameter File.
##              GlobalParam file contains information about the TestEnvironment.
## Example:
##          filename = /ATF/GlobalParam.cfg
##          filename = /home/qa/ATF/GlobalParam.cfg
#############################################################################
[GlobalParam]
filename =