1# -------------------------------------------------------------
2# *************** DO NOT EDIT THIS FILE ***********************
3#
4# for user-editable property overrides use one of these options:
5#
6# (1) option-specific command line overrides, e.g.
7#     -Dreport.txt.out.file=coverage.txt
8#
9# (2) '-p <options file>' command line option,
10#
11# (3) 'emma.properties' resource placed somewhere in the classpath
12#     (e.g., in <jre dir>\classes directory -- note that it does
13#     not exist by default),
14#
15# (4) '-Demma.*' JVM options, e.g.
16#     -Demma.report.txt.out.file=coverage.txt
17#
18# (5) 'emma.properties' JVM option pointing to a properties file
19#     -Demma.properties=./myproperties.txt
20# -------------------------------------------------------------
21
22# -------------------------------------------------------------
23# logging properties:
24
25verbosity.level:	info
26
27# classloading properties:
28
29#clsload.forced_delegation_filter:
30#clsload.through_delegation_filter: -*
31
32# -------------------------------------------------------------
33
34# instrumentation properties:
35
36instr.exclude_synthetic_methods:	true
37instr.exclude_bridge_methods:		true
38instr.do_suid_compensation:		true
39
40# -------------------------------------------------------------
41
42# apprunner session data output properties:
43
44session.out.file:	coverage.es
45session.out.merge:	true
46
47# -------------------------------------------------------------
48
49# runtime coverage data output properties:
50
51coverage.out.file:	/sdcard/coverage.ec
52coverage.out.merge:	true
53
54# -------------------------------------------------------------
55
56# instr metadata output properties:
57
58metadata.out.file:	coverage.em
59metadata.out.merge:	true
60
61# -------------------------------------------------------------
62
63# common report defaults:
64
65report.units:		instr
66report.depth:		method
67report.columns:		name,class,method,block,line
68report.sort:		+block,+name,+method,+class
69report.metrics:		method:70,block:80,line:80,class:100
70
71# -------------------------------------------------------------
72# txt report properties:
73
74report.txt.depth:	all
75report.txt.columns:	class,method,block,line,name
76report.txt.out.file:	coverage.txt
77
78# -------------------------------------------------------------
79# html report properties:
80
81#report.html.out.dir:	coverage
82report.html.out.file:	coverage/index.html
83report.html.out.encoding: ISO-8859-1
84
85# -------------------------------------------------------------
86# xml report properties:
87
88report.xml.out.file:	coverage.xml
89report.xml.out.encoding: UTF-8
90# -------------------------------------------------------------
91# end of file
92