Home | History | Annotate | Download | only in tools

Lines Matching refs:coverage

166   result.add_option("--coverage", help=("Exponential test coverage "
169 result.add_option("--coverage-lift", help=("Lifts test coverage for tests "
260 if options.coverage < 0.0 or options.coverage > 1.0:
261 print ("Coverage %s is out of range. Defaulting to 0.4"
262 % options.coverage)
263 options.coverage = 0.4
265 print ("Coverage lift %s is out of range. Defaulting to 0"
332 coverage.
333 The coverage is expected to be between 0.0 and 1.0.
334 The 'coverage lift' lifts the coverage for tests with smaller m values.
336 c = float(options.coverage)