Minor improvements to unit testing engine

This commit is contained in:
Ivan Kravets
2019-05-30 16:39:17 +03:00
parent 3cc4af1723
commit d5e277b7cc
4 changed files with 28 additions and 20 deletions

View File

@@ -25,7 +25,8 @@ class NativeTestProcessor(TestProcessorBase):
def process(self):
if not self.options['without_building']:
self.print_progress("Building... (1/2)")
self.build_or_upload(["__test"])
if not self.build_or_upload(["__test"]):
return False
if self.options['without_testing']:
return None
self.print_progress("Testing... (2/2)")