buildframework/helium/builder/python/lib/coverage.py
author Zheng Shen <zheng.shen@nokia.com>
Tue, 17 Aug 2010 15:31:16 +0800
changeset 626 ac03b93ca9c4
parent 587 85df38eb4012
permissions -rw-r--r--
ROM Tools 12.3.4 + RCOMP 8.4.2

#!/usr/bin/env python
"A script for invoking coverage from the command line."

import sys
del sys.path[0] # Otherwise "import coverage" finds this file!
import coverage

coverage.the_coverage.command_line(sys.argv[1:])