| OLD | NEW |
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # Crocodile config file for Chromium - settings common to all platforms | 2 # Crocodile config file for Chromium - settings common to all platforms |
| 3 # | 3 # |
| 4 # This should be speicified before the platform-specific config, for example: | 4 # This should be speicified before the platform-specific config, for example: |
| 5 # croc -c chrome_common.croc -c linux/chrome_linux.croc | 5 # croc -c chrome_common.croc -c linux/chrome_linux.croc |
| 6 | 6 |
| 7 { | 7 { |
| 8 # List of root directories, applied in order | 8 # List of root directories, applied in order |
| 9 'roots' : [ | 9 'roots' : [ |
| 10 # Sub-paths we specifically care about and want to call out | 10 # Sub-paths we specifically care about and want to call out |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 { | 82 { |
| 83 'stat' : 'files_executable', | 83 'stat' : 'files_executable', |
| 84 'format' : '*RESULT FilesKnown: files_executable= %d files', | 84 'format' : '*RESULT FilesKnown: files_executable= %d files', |
| 85 }, | 85 }, |
| 86 { | 86 { |
| 87 'stat' : 'files_instrumented', | 87 'stat' : 'files_instrumented', |
| 88 'format' : '*RESULT FilesInstrumented: files_instrumented= %d files', | 88 'format' : '*RESULT FilesInstrumented: files_instrumented= %d files', |
| 89 }, | 89 }, |
| 90 { | 90 { |
| 91 'stat' : '100.0 * files_instrumented / files_executable', | 91 'stat' : '100.0 * files_instrumented / files_executable', |
| 92 'format' : '*RESULT FilesInstrumentedPercent: files_instrumented_percent=
%g percent', | 92 'format' : '*RESULT FilesInstrumentedPercent: files_instrumented_percent=
%g', |
| 93 }, | 93 }, |
| 94 { | 94 { |
| 95 'stat' : 'lines_executable', | 95 'stat' : 'lines_executable', |
| 96 'format' : '*RESULT LinesKnown: lines_known= %d lines', | 96 'format' : '*RESULT LinesKnown: lines_known= %d lines', |
| 97 }, | 97 }, |
| 98 { | 98 { |
| 99 'stat' : 'lines_instrumented', | 99 'stat' : 'lines_instrumented', |
| 100 'format' : '*RESULT LinesInstrumented: lines_instrumented= %d lines', | 100 'format' : '*RESULT LinesInstrumented: lines_instrumented= %d lines', |
| 101 }, | 101 }, |
| 102 { | 102 { |
| 103 'stat' : 'lines_covered', | 103 'stat' : 'lines_covered', |
| 104 'format' : '*RESULT LinesCoveredSource: lines_covered_source= %d lines', | 104 'format' : '*RESULT LinesCoveredSource: lines_covered_source= %d lines', |
| 105 'group' : 'source', | 105 'group' : 'source', |
| 106 }, | 106 }, |
| 107 { | 107 { |
| 108 'stat' : 'lines_covered', | 108 'stat' : 'lines_covered', |
| 109 'format' : '*RESULT LinesCoveredTest: lines_covered_test= %d lines', | 109 'format' : '*RESULT LinesCoveredTest: lines_covered_test= %d lines', |
| 110 'group' : 'test', | 110 'group' : 'test', |
| 111 }, | 111 }, |
| 112 { | 112 { |
| 113 'stat' : '100.0 * lines_covered / lines_executable', | 113 'stat' : '100.0 * lines_covered / lines_executable', |
| 114 'format' : '*RESULT PercentCovered: percent_covered= %g percent', | 114 'format' : '*RESULT PercentCovered: percent_covered= %g', |
| 115 }, | 115 }, |
| 116 { | 116 { |
| 117 'stat' : '100.0 * lines_covered / lines_executable', | 117 'stat' : '100.0 * lines_covered / lines_executable', |
| 118 'format' : '*RESULT PercentCoveredSource: percent_covered_source= %g perce
nt', | 118 'format' : '*RESULT PercentCoveredSource: percent_covered_source= %g', |
| 119 'group' : 'source', | 119 'group' : 'source', |
| 120 }, | 120 }, |
| 121 { | 121 { |
| 122 'stat' : '100.0 * lines_covered / lines_executable', | 122 'stat' : '100.0 * lines_covered / lines_executable', |
| 123 'format' : '*RESULT PercentCoveredTest: percent_covered_test= %g percent', | 123 'format' : '*RESULT PercentCoveredTest: percent_covered_test= %g', |
| 124 'group' : 'test', | 124 'group' : 'test', |
| 125 }, | 125 }, |
| 126 ], | 126 ], |
| 127 } | 127 } |
| OLD | NEW |