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
|
## commented out due to a bug in v1.6501 in mtutil
[fields]
a text
b text
c text
[setup]
pktsdirs /tmp/pkts /some/other/source
[areas]
# path=path-to-area;targtrans=script_to_transform_target
local path=.
fullrun path=tests/fullrun
# targtrans is name of scheme proc stored in .mtutil.scm, which lives in PWD where mtutil is run
# ext-tests path=ext-tests; targtrans=prefix-contour;
ext path=ext-tests
[contours]
# mode-patt/tag-expr
quick selector=QUICKPATT/quick
full areas=fullrun,ext-tests; selector=MAXPATT/
all areas=fullrun,ext-tests
snazy areas=%; selector=QUICKPATT/
[nopurpose]
[server]
timeout 1
|
>
>
>
>
|
>
|
>
>
>
|
|
>
|
|
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
|
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
|
## commented out due to a bug in v1.6501 in mtutil
[fields]
a text
b text
c text
usercode .mtutil.scm
areafilter area-to-run
targtrans generic-target-translator
runtrans generic-runname-translator
[setup]
pktsdirs /tmp/mt_pkts /some/other/source
[areas]
# path=path-to-area;targtrans=script_to_transform_target
local path=.
# someqa path=../megatestqa/someqa; targtrans=somefunc; areafilter=area-to-run
fullrun path=tests/fullrun;
# targtrans is name of scheme proc stored in .mtutil.scm, which lives in PWD where mtutil is run
# the target translator can return: a/target OR (list/of targets/to apply/run) OR #f i.e. run nothing
# ext-tests path=ext-tests; targtrans=prefix-contour;
ext path=ext-tests
[contours]
# mode-patt/tag-expr
quick areas=ext; selector=/QUICKPATT
quick2 areafn=check-area; selector=/QUICKPATT
# quick areas=fullrun,ext-tests; selector=QUICKPATT/quick
# full areas=fullrun,ext-tests; selector=MAXPATT/
# short areas=fullrun,ext-tests; selector=MAXPATT/
# all areas=fullrun,ext-tests
# snazy selector=QUICKPATT/
[nopurpose]
[access]
ext matt:admin mattw:owner
[accesstypes]
admin run rerun resume remove set-ss
owner run rerun resume remove
badguy set-ss
[setup]
maxload 1.2
[listeners]
localhost:12345 contact=matt@kiatoa.com
localhost:54321 contact=matt@kiatoa.com
[listener]
script nbfake echo
[server]
timeout 1
|