Index: tools/heapcheck/chrome_tests.py |
=================================================================== |
--- tools/heapcheck/chrome_tests.py (revision 146019) |
+++ tools/heapcheck/chrome_tests.py (working copy) |
@@ -308,7 +308,11 @@ |
return self.SimpleTest("chrome", "ui_unittests") |
def TestGfx(self): |
- return self.SimpleTest("chrome", "gfx_unittests") |
+ # Run ui_unittests, a successor of gfx_unittests, since gfx_unittests is |
+ # deprecated. |
+ # TODO(hbono): This is a band-aid fix. We need to change the master script |
+ # so our bots run ui_unittests. |
+ return self.SimpleTest("chrome", "ui_unittests") |
def TestLayoutChunk(self, chunk_num, chunk_size): |
'''Runs tests [chunk_num*chunk_size .. (chunk_num+1)*chunk_size). |