Skip to content

Commit

Permalink
Cherry pick PR #3323: Set test runner default return to be error (#3410)
Browse files Browse the repository at this point in the history
Refer to the original PR: #3323

b/342204709

Co-authored-by: Oscar Vestlie <[email protected]>
  • Loading branch information
cobalt-github-releaser-bot and oxve authored May 31, 2024
1 parent abd31e7 commit a3a4040
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion starboard/tools/testing/test_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ def Join(self):

def _Run(self) -> None:
"""Runs the launcher, and assigns a status and a return code."""
return_code = TargetStatus.NOT_STARTED, 0
return_code = TargetStatus.NOT_STARTED, 1
try:
logging.info("Running launcher")
return_code = self.run_test()
Expand Down

0 comments on commit a3a4040

Please sign in to comment.