summaryrefslogtreecommitdiffstats
path: root/tools/heapcheck/chrome_tests.py
diff options
context:
space:
mode:
authorhbono@chromium.org <hbono@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-07-11 08:10:19 +0000
committerhbono@chromium.org <hbono@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-07-11 08:10:19 +0000
commit934a2ef70bee941a8f6e9f3408eab8504f41ff98 (patch)
treeaa30ecae28d494e4cec2320f2ee15755518a27be /tools/heapcheck/chrome_tests.py
parente319a143002e7b0df091c7bb677e259e54693f19 (diff)
downloadchromium_src-934a2ef70bee941a8f6e9f3408eab8504f41ff98.zip
chromium_src-934a2ef70bee941a8f6e9f3408eab8504f41ff98.tar.gz
chromium_src-934a2ef70bee941a8f6e9f3408eab8504f41ff98.tar.bz2
Rename gfx_unittests with ui_unittests.
This is a band-aid fix that runs ui_unittests when runing chrome_tests.sh with a '-t gfx' option. Also, it renames an exclude file to use it when running ui_unittests. BUG=none TEST=make valgrind and heapchecker bots green. Review URL: https://chromiumcodereview.appspot.com/10698146 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@146081 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/heapcheck/chrome_tests.py')
-rwxr-xr-xtools/heapcheck/chrome_tests.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/tools/heapcheck/chrome_tests.py b/tools/heapcheck/chrome_tests.py
index a2c43a22..c8dfcae 100755
--- a/tools/heapcheck/chrome_tests.py
+++ b/tools/heapcheck/chrome_tests.py
@@ -308,7 +308,11 @@ class ChromeTests(object):
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).