buildframework/helium/builder/python/lib/coverage.py
author Bob Rosenberg <bob.rosenberg@nokia.com>
Thu, 12 Aug 2010 15:59:45 +0100
changeset 636 29e6a24e9521
parent 587 85df38eb4012
permissions -rw-r--r--
More extensive error reporting in sysdef perl tools. Allow sysdef merging with an empty upstream model.

#!/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:])