Separate projection mode from rest of touch HUD
[chromium-blink-merge.git] / third_party / lcov-1.9 / man / lcovrc.5
blob3258ba04da03baf36535af431eb2d7babe95c567
1 .TH lcovrc 5 "LCOV 1.9" 2010\-08\-06 "User Manuals"
3 .SH NAME
4 lcovrc \- lcov configuration file
6 .SH DESCRIPTION
7 The
8 .I lcovrc
9 file contains configuration information for the
10 .B lcov
11 code coverage tool (see
12 .BR lcov (1)).
13 .br
15 The system\-wide configuration file is located at
16 .IR /etc/lcovrc .
17 To change settings for a single user, place a customized copy of this file at
18 location
19 .IR ~/.lcovrc .
20 Where available, command\-line options override configuration file settings.
22 Lines in a configuration file can either be:
23 .IP "     *"
24 empty lines or lines consisting only of white space characters. These lines are
25 ignored.
26 .IP "     *"
27 comment lines which start with a hash sign ('#'). These are treated like empty
28 lines and will be ignored.
29 .IP "     *"
30 statements in the form
31 .RI ' key " = " value '.
32 A list of valid statements and their description can be found in
33 section 'OPTIONS' below.
34 .PP
36 .B Example configuration:
37 .IP
39 .br
40 # Example LCOV configuration file
41 .br
43 .br
45 # External style sheet file
46 .br
47 #genhtml_css_file = gcov.css
48 .br
50 # Coverage rate limits
51 .br
52 genhtml_hi_limit = 90
53 .br
54 genhtml_med_limit = 75
55 .br
57 # Width of line coverage field in source code view
58 .br
59 genhtml_line_field_width = 12
60 .br
62 # Width of branch coverage field in source code view
63 .br
64 genhtml_branch_field_width = 16
65 .br
67 # Width of overview image
68 .br
69 genhtml_overview_width = 80
70 .br
72 # Resolution of overview navigation
73 .br
74 genhtml_nav_resolution = 4
75 .br
77 # Offset for source code navigation
78 .br
79 genhtml_nav_offset = 10
80 .br
82 # Do not remove unused test descriptions if non\-zero
83 .br
84 genhtml_keep_descriptions = 0
85 .br
87 # Do not remove prefix from directory names if non\-zero
88 .br
89 genhtml_no_prefix = 0
90 .br
92 # Do not create source code view if non\-zero
93 .br
94 genhtml_no_source = 0
95 .br
97 # Specify size of tabs
98 .br
99 genhtml_num_spaces = 8
102 # Highlight lines with converted\-only data if non\-zero
104 genhtml_highlight = 0
107 # Include color legend in HTML output if non\-zero
109 genhtml_legend = 0
112 # Include HTML file at start of HTML output
114 #genhtml_html_prolog = prolog.html
117 # Include HTML file at end of HTML output
119 #genhtml_html_epilog = epilog.html
122 # Use custom HTML file extension
124 #genhtml_html_extension = html
127 # Compress all generated html files with gzip.
129 #genhtml_html_gzip = 1
132 # Include sorted overview pages
134 genhtml_sort = 1
137 # Include function coverage data display
139 genhtml_function_coverage = 1
142 # Include branch coverage data display
144 genhtml_branch_coverage = 1
147 # Location of the gcov tool
149 #geninfo_gcov_tool = gcov
152 # Adjust test names if non\-zero
154 #geninfo_adjust_testname = 0
157 # Calculate a checksum for each line if non\-zero
159 geninfo_checksum = 0
162 # Enable libtool compatibility mode if non\-zero
164 geninfo_compat_libtool = 0
167 # Directory containing gcov kernel files
169 lcov_gcov_dir = /proc/gcov
172 # Location for temporary directories
174 lcov_tmp_dir = /tmp
177 # Show full paths during list operation if non\-zero
179 lcov_list_full_path = 0
182 # Specify the maximum width for list output. This value is
184 # ignored when lcov_list_full_path is non\-zero.
186 lcov_list_width = 80
189 # Specify the maximum percentage of file names which may be
191 # truncated when choosing a directory prefix in list output.
193 # This value is ignored when lcov_list_full_path is non\-zero.
196 lcov_list_truncate_max = 20
199 .SH OPTIONS
201 .BR genhtml_css_file " ="
202 .I filename
204 Specify an external style sheet file. Use this option to modify the appearance of the HTML output as generated by
205 .BR genhtml .
206 During output generation, a copy of this file will be placed in the output
207 directory.
210 This option corresponds to the \-\-css\-file command line option of
211 .BR genhtml .
214 By default, a standard CSS file is generated.
217 .BR genhtml_hi_limit "  ="
218 .I hi_limit
220 .BR genhtml_med_limit " ="
221 .I med_limit
224 Specify coverage rate limits for classifying file entries. Use this option to
225 modify the coverage rates (in percent) for line, function and branch coverage at
226 which a result is classified as high, medium or low coverage. This
227 classification affects the color of the corresponding entries on the overview
228 pages of the HTML output:
231 High:   hi_limit  <= rate <= 100        default color: green
233 Medium: med_limit <= rate < hi_limit    default color: orange
235 Low:    0         <= rate < med_limit   default color: red
238 Defaults are 90 and 75 percent.
241 .BR genhtml_line_field_width " ="
242 .I number_of_characters
244 Specify the width (in characters) of the source code view column containing
245 line coverage information.
248 Default is 12.
251 .BR genhtml_branch_field_width " ="
252 .I number_of_characters
254 Specify the width (in characters) of the source code view column containing
255 branch coverage information.
258 Default is 16.
261 .BR genhtml_overview_width " ="
262 .I pixel_size
264 Specify the width (in pixel) of the overview image created when generating HTML
265 output using the \-\-frames option of
266 .BR genhtml .
269 Default is 80.
272 .BR genhtml_nav_resolution " ="
273 .I lines
275 Specify the resolution of overview navigation when generating HTML output using
276 the \-\-frames option of
277 .BR genhtml .
278 This number specifies the maximum difference in lines between the position a
279 user selected from the overview and the position the source code window is
280 scrolled to.
283 Default is 4.
287 .BR genhtml_nav_offset " ="
288 .I lines
290 Specify the overview navigation line offset as applied when generating HTML
291 output using the \-\-frames option of
292 .BR genhtml.
295 Clicking a line in the overview image should show the source code view at
296 a position a bit further up, so that the requested line is not the first
297 line in the window.  This number specifies that offset.
300 Default is 10.
304 .BR genhtml_keep_descriptions " ="
305 .IR 0 | 1
307 If non\-zero, keep unused test descriptions when generating HTML output using
308 .BR genhtml .
311 This option corresponds to the \-\-keep\-descriptions option of
312 .BR genhtml .
315 Default is 0.
318 .BR genhtml_no_prefix " ="
319 .IR 0 | 1
321 If non\-zero, do not try to find and remove a common prefix from directory names.
324 This option corresponds to the \-\-no\-prefix option of
325 .BR genhtml .
328 Default is 0.
331 .BR genhtml_no_source " ="
332 .IR 0 | 1
334 If non\-zero, do not create a source code view when generating HTML output using
335 .BR genhtml .
338 This option corresponds to the \-\-no\-source option of
339 .BR genhtml .
342 Default is 0.
345 .BR genhtml_num_spaces " ="
346 .I num
348 Specify the number of spaces to use as replacement for tab characters in the
349 HTML source code view as generated by
350 .BR genhtml .
353 This option corresponds to the \-\-num\-spaces option of
354 .BR genthml .
357 Default is 8.
361 .BR genhtml_highlight " ="
362 .IR 0 | 1
364 If non\-zero, highlight lines with converted\-only data in
365 HTML output as generated by
366 .BR genhtml .
369 This option corresponds to the \-\-highlight option of
370 .BR genhtml .
373 Default is 0.
376 .BR genhtml_legend " ="
377 .IR 0 | 1
379 If non\-zero, include a legend explaining the meaning of color coding in the HTML
380 output as generated by
381 .BR genhtml .
384 This option corresponds to the \-\-legend option of
385 .BR genhtml .
388 Default is 0.
391 .BR genhtml_html_prolog " ="
392 .I filename
394 If set, include the contents of the specified file at the beginning of HTML
395 output.
397 This option corresponds to the \-\-html\-prolog option of
398 .BR genhtml .
401 Default is to use no extra prolog.
404 .BR genhtml_html_epilog " ="
405 .I filename
407 If set, include the contents of the specified file at the end of HTML output.
409 This option corresponds to the \-\-html\-epilog option of
410 .BR genhtml .
413 Default is to use no extra epilog.
416 .BR genhtml_html_extension " ="
417 .I extension
419 If set, use the specified string as filename extension for generated HTML files.
421 This option corresponds to the \-\-html\-extension option of
422 .BR genhtml .
425 Default extension is "html".
428 .BR genhtml_html_gzip " ="
429 .IR 0 | 1
431 If set, compress all html files using gzip.
433 This option corresponds to the \-\-html\-gzip option of
434 .BR genhtml .
437 Default extension is 0.
440 .BR genhtml_sort " ="
441 .IR 0 | 1
443 If non\-zero, create overview pages sorted by coverage rates when generating
444 HTML output using
445 .BR genhtml .
448 This option can be set to 0 by using the \-\-no\-sort option of
449 .BR genhtml .
452 Default is 1.
455 .BR genhtml_function_coverage " ="
456 .IR 0 | 1
458 If non\-zero, include function coverage data when generating HTML output using
459 .BR genhtml .
462 This option can be set to 0 by using the \-\-no\-function\-coverage option of
463 .BR genhtml .
466 Default is 1.
469 .BR genhtml_branch_coverage " ="
470 .IR 0 | 1
472 If non\-zero, include branch coverage data when generating HTML output using
473 .BR genhtml .
476 This option can be set to 0 by using the \-\-no\-branch\-coverage option of
477 .BR genhtml .
480 Default is 1.
483 .BR geninfo_gcov_tool " ="
484 .I path_to_gcov
486 Specify the location of the gcov tool (see
487 .BR gcov (1))
488 which is used to generate coverage information from data files. 
491 Default is 'gcov'.
494 .BR geninfo_adjust_testname " ="
495 .IR 0 | 1
497 If non\-zero,  adjust test names to include operating system information
498 when capturing coverage data.
501 Default is 0.
504 .BR geninfo_checksum " ="
505 .IR 0 | 1
507 If non\-zero, generate source code checksums when capturing coverage data.
508 Checksums are useful to prevent merging coverage data from incompatible
509 source code versions but checksum generation increases the size of coverage
510 files and the time used to generate those files.
513 This option corresponds to the \-\-checksum and \-\-no\-checksum command line
514 option of
515 .BR geninfo .
518 Default is 0.
521 .BR geninfo_compat_libtool " ="
522 .IR 0 | 1
524 If non\-zero, enable libtool compatibility mode. When libtool compatibility
525 mode is enabled, lcov will assume that the source code relating to a .da file
526 located in a directory named ".libs" can be found in its parent directory.
529 This option corresponds to the \-\-compat\-libtool and \-\-no\-compat\-libtool
530 command line option of
531 .BR geninfo .
534 Default is 1.
537 .BR lcov_gcov_dir " ="
538 .I path_to_kernel_coverage_data
540 Specify the path to the directory where kernel coverage data can be found
541 or leave undefined for auto-detection.
544 Default is auto-detection.
547 .BR lcov_tmp_dir " ="
548 .I temp
550 Specify the location of a directory used for temporary files.
553 Default is '/tmp'.
556 .BR lcov_list_full_path " ="
557 .IR 0 | 1
559 If non-zero, print the full path to source code files during a list operation.
562 This option corresponds to the \-\-list\-full\-path option of
563 .BR lcov .
566 Default is 0.
569 .BR lcov_list_max_width " ="
570 .IR width
572 Specify the maximum width for list output. This value is ignored when
573 lcov_list_full_path is non\-zero.
576 Default is 80.
579 .BR lcov_list_truncate_max
580 .B " ="
581 .IR percentage
583 Specify the maximum percentage of file names which may be truncated when
584 choosing a directory prefix in list output. This value is ignored when
585 lcov_list_full_path is non\-zero.
588 Default is 20.
591 .SH FILES
594 .I /etc/lcovrc
595 The system\-wide
596 .B lcov
597 configuration file.
600 .I ~/.lcovrc
601 The individual per\-user configuration file.
604 .SH SEE ALSO
605 .BR lcov (1),
606 .BR genhtml (1),
607 .BR geninfo (1),
608 .BR gcov (1)