Lines Matching refs:tracer
67 def label_for_tracer(tracer): argument
69 if tracer == "py":
77 def should_skip(tracer): argument
79 if tracer == "py":
88 msg = "Skipping tests " + label_for_tracer(tracer)
97 def run_tests(tracer, *nose_args): argument
104 print_banner(label_for_tracer(tracer))
109 def run_tests_with_coverage(tracer, *nose_args): argument
131 suffix = "%s%s_%s_%s" % (impl, version, tracer, platform.platform())
162 run_tests(tracer, *nose_args)
187 def do_test_with_tracer(tracer, *noseargs): argument
190 skip_msg = should_skip(tracer)
195 os.environ["COVERAGE_TEST_TRACER"] = tracer
197 return run_tests_with_coverage(tracer, *noseargs)
199 return run_tests(tracer, *noseargs)