diff options
author | charleslee@chromium.org <charleslee@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-18 21:58:52 +0000 |
---|---|---|
committer | charleslee@chromium.org <charleslee@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-18 21:58:52 +0000 |
commit | c79b29993fbe0299a69cacce481ec42fbe1e432e (patch) | |
tree | 0dd53aa32f10f1f2aa95dabdf11a0fc7b4c3ab46 /tools/sharding_supervisor/sharding_supervisor.py | |
parent | 4d2efd2e100bc961d3e19e0a6f242c7914917690 (diff) | |
download | chromium_src-c79b29993fbe0299a69cacce481ec42fbe1e432e.zip chromium_src-c79b29993fbe0299a69cacce481ec42fbe1e432e.tar.gz chromium_src-c79b29993fbe0299a69cacce481ec42fbe1e432e.tar.bz2 |
Catch last incomplete test on sharding_supervisor
This should fix it
BUG=if the last test in a shard doesn't finish, it isn't marked as incomplete
TEST=a test that crashes a shard shows up in the summary
Review URL: http://codereview.chromium.org/7677020
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@97368 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/sharding_supervisor/sharding_supervisor.py')
-rwxr-xr-x | tools/sharding_supervisor/sharding_supervisor.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/sharding_supervisor/sharding_supervisor.py b/tools/sharding_supervisor/sharding_supervisor.py index 21bbab5..1049f8f 100755 --- a/tools/sharding_supervisor/sharding_supervisor.py +++ b/tools/sharding_supervisor/sharding_supervisor.py @@ -157,7 +157,7 @@ class ShardRunner(threading.Thread): chars.close() chars = cStringIO.StringIO() if self.current_test: - self.ReportFailure("INCOMPLETE", prefix, self.current_test) + self.ReportFailure("INCOMPLETE", self.current_test) self.supervisor.ShardIndexCompleted(index) if shard.returncode != 0: self.supervisor.LogShardFailure(index) |