Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1443)

Side by Side Diff: third_party/lcov-1.9/lcovrc

Issue 23189008: Upgrades lcov to 1.10, removes lcov-1.9 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Re-adds UNKNOWN suppression Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/lcov-1.9/example/methods/iterate.c ('k') | third_party/lcov-1.9/man/gendesc.1 » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #
2 # /etc/lcovrc - system-wide defaults for LCOV
3 #
4 # To change settings for a single user, place a customized copy of this file
5 # at location ~/.lcovrc
6 #
7
8 # Specify an external style sheet file (same as --css-file option of genhtml)
9 #genhtml_css_file = gcov.css
10
11 # Specify coverage rate limits (in %) for classifying file entries
12 # HI: hi_limit <= rate <= 100 graph color: green
13 # MED: med_limit <= rate < hi_limit graph color: orange
14 # LO: 0 <= rate < med_limit graph color: red
15 genhtml_hi_limit = 90
16 genhtml_med_limit = 75
17
18 # Width of line coverage field in source code view
19 genhtml_line_field_width = 12
20
21 # Width of branch coverage field in source code view
22 genhtml_branch_field_width = 16
23
24 # Width of overview image (used by --frames option of genhtml)
25 genhtml_overview_width = 80
26
27 # Resolution of overview navigation: this number specifies the maximum
28 # difference in lines between the position a user selected from the overview
29 # and the position the source code window is scrolled to (used by --frames
30 # option of genhtml)
31 genhtml_nav_resolution = 4
32
33 # Clicking a line in the overview image should show the source code view at
34 # a position a bit further up so that the requested line is not the first
35 # line in the window. This number specifies that offset in lines (used by
36 # --frames option of genhtml)
37 genhtml_nav_offset = 10
38
39 # Do not remove unused test descriptions if non-zero (same as
40 # --keep-descriptions option of genhtml)
41 genhtml_keep_descriptions = 0
42
43 # Do not remove prefix from directory names if non-zero (same as --no-prefix
44 # option of genhtml)
45 genhtml_no_prefix = 0
46
47 # Do not create source code view if non-zero (same as --no-source option of
48 # genhtml)
49 genhtml_no_source = 0
50
51 # Replace tabs with number of spaces in source view (same as --num-spaces
52 # option of genhtml)
53 genhtml_num_spaces = 8
54
55 # Highlight lines with converted-only data if non-zero (same as --highlight
56 # option of genhtml)
57 genhtml_highlight = 0
58
59 # Include color legend in HTML output if non-zero (same as --legend option of
60 # genhtml)
61 genhtml_legend = 0
62
63 # Use FILE as HTML prolog for generated pages (same as --html-prolog option of
64 # genhtml)
65 #genhtml_html_prolog = FILE
66
67 # Use FILE as HTML epilog for generated pages (same as --html-epilog option of
68 # genhtml)
69 #genhtml_html_epilog = FILE
70
71 # Use custom filename extension for pages (same as --html-extension option of
72 # genhtml)
73 #genhtml_html_extension = html
74
75 # Compress all generated html files with gzip.
76 #genhtml_html_gzip = 1
77
78 # Include sorted overview pages (can be disabled by the --no-sort option of
79 # genhtml)
80 genhtml_sort = 1
81
82 # Include function coverage data display (can be disabled by the
83 # --no-func-coverage option of genhtml)
84 genhtml_function_coverage = 1
85
86 # Include branch coverage data display (can be disabled by the
87 # --no-branch-coverage option of genhtml)
88 genhtml_branch_coverage = 1
89
90 # Location of the gcov tool (same as --gcov-info option of geninfo)
91 #geninfo_gcov_tool = gcov
92
93 # Adjust test names to include operating system information if non-zero
94 #geninfo_adjust_testname = 0
95
96 # Calculate checksum for each source code line if non-zero (same as --checksum
97 # option of geninfo if non-zero, same as --no-checksum if zero)
98 #geninfo_checksum = 1
99
100 # Enable libtool compatibility mode if non-zero (same as --compat-libtool option
101 # of geninfo if non-zero, same as --no-compat-libtool if zero)
102 #geninfo_compat_libtool = 0
103
104 # Directory containing gcov kernel files
105 # lcov_gcov_dir = /proc/gcov
106
107 # Location of the insmod tool
108 lcov_insmod_tool = /sbin/insmod
109
110 # Location of the modprobe tool
111 lcov_modprobe_tool = /sbin/modprobe
112
113 # Location of the rmmod tool
114 lcov_rmmod_tool = /sbin/rmmod
115
116 # Location for temporary directories
117 lcov_tmp_dir = /tmp
118
119 # Show full paths during list operation if non-zero (same as --list-full-path
120 # option of lcov)
121 lcov_list_full_path = 0
122
123 # Specify the maximum width for list output. This value is ignored when
124 # lcov_list_full_path is non-zero.
125 lcov_list_width = 80
126
127 # Specify the maximum percentage of file names which may be truncated when
128 # choosing a directory prefix in list output. This value is ignored when
129 # lcov_list_full_path is non-zero.
130 lcov_list_truncate_max = 20
OLDNEW
« no previous file with comments | « third_party/lcov-1.9/example/methods/iterate.c ('k') | third_party/lcov-1.9/man/gendesc.1 » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698