Lines Matching full:coverage
163 result.add_option("--coverage", help=("Exponential test coverage "
166 result.add_option("--coverage-lift", help=("Lifts test coverage for tests "
253 if options.coverage < 0.0 or options.coverage > 1.0:
254 print ("Coverage %s is out of range. Defaulting to 0.4"
255 % options.coverage)
256 options.coverage = 0.4
258 print ("Coverage lift %s is out of range. Defaulting to 0"
322 coverage.
323 The coverage is expected to be between 0.0 and 1.0.
324 The 'coverage lift' lifts the coverage for tests with smaller m values.
326 c = float(options.coverage)