Commit 3b6394b0 authored by nsylvain@google.com's avatar nsylvain@google.com

Fix sharding supervisor

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@132348 0039d316-1c4b-4281-b951-d872f2087c98
parent 10f6b14a
...@@ -81,7 +81,7 @@ def AppendToGTestOutput(gtest_args, value): ...@@ -81,7 +81,7 @@ def AppendToGTestOutput(gtest_args, value):
args = gtest_args[:] args = gtest_args[:]
current_value = GetGTestOutput(args) current_value = GetGTestOutput(args)
if not current_value: if not current_value:
return return gtest_args
current_arg = '--gtest_output=' + current_value current_arg = '--gtest_output=' + current_value
args.remove(current_arg) args.remove(current_arg)
...@@ -93,7 +93,7 @@ def RemoveGTestOutput(gtest_args): ...@@ -93,7 +93,7 @@ def RemoveGTestOutput(gtest_args):
args = gtest_args[:] args = gtest_args[:]
current_value = GetGTestOutput(args) current_value = GetGTestOutput(args)
if not current_value: if not current_value:
return return gtest_args
args.remove('--gtest_output=' + current_value) args.remove('--gtest_output=' + current_value)
return args return args
......
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