Added mutation test summary and made it exit with relevant exit code

This commit is contained in:
Sandeep Hegde 2017-11-12 01:18:29 -05:00
parent b8199e11e0
commit cc6c2eea6e
3 changed files with 31 additions and 2 deletions

View file

@ -8,5 +8,8 @@
# except according to those terms.
import subprocess
import sys
subprocess.call('python python/servo/mutation/init.py components/script/dom', shell=True)
mutation_path = 'components/script/dom'
status = subprocess.call('python python/servo/mutation/init.py %s' % mutation_path, shell=True)
sys.exit(status)