Commit 5c53cb02 authored by tonyg@chromium.org's avatar tonyg@chromium.org

[Telemetry] Fix run_test return code.

BUG=

Review URL: https://codereview.chromium.org/11788006

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@175251 0039d316-1c4b-4281-b951-d872f2087c98
parent 402ae85c
...@@ -140,4 +140,4 @@ def Main(args, start_dir, top_level_dir): ...@@ -140,4 +140,4 @@ def Main(args, start_dir, top_level_dir):
os.chdir(olddir) os.chdir(olddir)
options_for_unittests.Set(None, None) options_for_unittests.Set(None, None)
return max(num_errors, 255) return min(num_errors, 255)
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