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
|
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Megatest. If not, see <http://www.gnu.org/licenses/>.
# Add additional steps here. Format is "stepname script"
[ezsteps]
[include #{getenv MT_RUNAREAHOME}/steps.config]
# Test requirements are specified here
[requirements]
waiton test1
priority 0
# Iteration for your tests are controlled by the items section
[items]
LANDTYPE desert plains forest jungle beach
[logpro]
(expect:ignore in "LogFileBody" < 99 "Ignore the word error in comments" #/^\/\/.*error/)
(expect:warning in "LogFileBody" = 0 "Any warning" #/warn/)
(expect:error in "LogFileBody" = 0 "Any error" (list #/ERROR/ #/error/)) ;; but disallow any other errors
# test_meta is a section for storing additional data on your test
[test_meta]
author matt
owner matt
description Yet another example test
tags tagone,tagtwo,quick
|
|
|
|
|
|
|
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
|
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Megatest. If not, see <http://www.gnu.org/licenses/>.
# Add additional steps here. Format is "stepname script"
[ezsteps]
[include #{getenv MT_RUN_AREA_HOME}/steps.config]
# Test requirements are specified here
[requirements]
waiton test1
priority 0
# Iteration for your tests are controlled by the items section
[items]
LANDTYPE desert
[logpro]
(expect:ignore in "LogFileBody" < 99 "Ignore the word error in comments" #/^\/\/.*error/)
(expect:warning in "LogFileBody" = 0 "Any warning" #/warn/)
(expect:error in "LogFileBody" = 0 "Any error" (list #/ERROR/ #/error/)) ;; but disallow any other errors
# test_meta is a section for storing additional data on your test
[test_meta]
author matt
owner matt
description Yet another example test
tags tagone,tagtwo,quick
|