Merge pull request #31 from Constellation/fix-error-code

Propagate error code when test cases are failed
This commit is contained in:
Brian Terlson 2014-07-18 11:38:31 -07:00
commit 33c8399de8
1 changed files with 10 additions and 7 deletions

View File

@ -522,6 +522,7 @@ class TestSuite(object):
print
print "Use --full-summary to see output from failed tests"
print
return progress.failed
def WriteLog(self, result):
name = result.case.GetName()
@ -549,6 +550,7 @@ class TestSuite(object):
cases[0].Print()
def Main():
code = 0
parser = BuildOptions()
(options, args) = parser.parse_args()
ValidateOptions(options)
@ -571,16 +573,17 @@ def Main():
if options.cat:
test_suite.Print(args)
else:
test_suite.Run(options.command, args,
options.summary or options.full_summary,
options.full_summary,
options.logname,
options.junitname)
code = test_suite.Run(options.command, args,
options.summary or options.full_summary,
options.full_summary,
options.logname,
options.junitname)
return code
if __name__ == '__main__':
try:
Main()
sys.exit(0)
code = Main()
sys.exit(code)
except Test262Error, e:
print "Error: %s" % e.message
sys.exit(1)