From a3a4040754f03591a1b3bedf823a785cd5d0f3e5 Mon Sep 17 00:00:00 2001 From: cobalt-github-releaser-bot <95661244+cobalt-github-releaser-bot@users.noreply.github.com> Date: Thu, 30 May 2024 22:02:37 -0700 Subject: [PATCH] Cherry pick PR #3323: Set test runner default return to be error (#3410) Refer to the original PR: https://github.com/youtube/cobalt/pull/3323 b/342204709 Co-authored-by: Oscar Vestlie --- starboard/tools/testing/test_runner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/starboard/tools/testing/test_runner.py b/starboard/tools/testing/test_runner.py index e8924526f940..343827ae3e5e 100755 --- a/starboard/tools/testing/test_runner.py +++ b/starboard/tools/testing/test_runner.py @@ -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()