Kaydet (Commit) 5b1bb898 authored tarafından Markus Mohrhard's avatar Markus Mohrhard

uitest: also print number of skipped tests

Change-Id: I7fbc6513358be252b091154b5ed44d10c8f51c4f
üst 940eeadf
......@@ -99,6 +99,7 @@ if __name__ == '__main__':
print("Tests run: %d" % result.testsRun)
print("Tests failed: %d" % len(result.failures))
print("Tests errors: %d" % len(result.errors))
print("Tests skipped: %d" % len(result.skipped))
if not result.wasSuccessful():
sys.exit(1)
sys.exit(0)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment