summaryrefslogtreecommitdiffstats
path: root/tools/sharding_supervisor
diff options
context:
space:
mode:
authornsylvain@google.com <nsylvain@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2012-04-14 22:43:19 +0000
committernsylvain@google.com <nsylvain@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2012-04-14 22:43:19 +0000
commit3b6394b02c4e72b52034158600ddf531f60b7352 (patch)
treef26a90443645e16d022bcb9eec5cbf4e040c222d /tools/sharding_supervisor
parent10f6b14ab493ff65e7fecb893537bd15c36f9c37 (diff)
downloadchromium_src-3b6394b02c4e72b52034158600ddf531f60b7352.zip
chromium_src-3b6394b02c4e72b52034158600ddf531f60b7352.tar.gz
chromium_src-3b6394b02c4e72b52034158600ddf531f60b7352.tar.bz2
Fix sharding supervisor
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@132348 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/sharding_supervisor')
-rwxr-xr-xtools/sharding_supervisor/sharding_supervisor.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/sharding_supervisor/sharding_supervisor.py b/tools/sharding_supervisor/sharding_supervisor.py
index 4ed9580..a95b586 100755
--- a/tools/sharding_supervisor/sharding_supervisor.py
+++ b/tools/sharding_supervisor/sharding_supervisor.py
@@ -81,7 +81,7 @@ def AppendToGTestOutput(gtest_args, value):
args = gtest_args[:]
current_value = GetGTestOutput(args)
if not current_value:
- return
+ return gtest_args
current_arg = '--gtest_output=' + current_value
args.remove(current_arg)
@@ -93,7 +93,7 @@ def RemoveGTestOutput(gtest_args):
args = gtest_args[:]
current_value = GetGTestOutput(args)
if not current_value:
- return
+ return gtest_args
args.remove('--gtest_output=' + current_value)
return args