diff options
Diffstat (limited to 'tools/heapcheck/chrome_tests.py')
-rwxr-xr-x | tools/heapcheck/chrome_tests.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/heapcheck/chrome_tests.py b/tools/heapcheck/chrome_tests.py index 8dfaa0a..0f452ba 100755 --- a/tools/heapcheck/chrome_tests.py +++ b/tools/heapcheck/chrome_tests.py @@ -1,6 +1,6 @@ #!/usr/bin/python -# Copyright (c) 2009 The Chromium Authors. All rights reserved. +# Copyright (c) 2011 The Chromium Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. @@ -96,7 +96,7 @@ class ChromeTests(object): "ui": self.TestUI, "ui_tests": self.TestUI, "unit": self.TestUnit, "unit_tests": self.TestUnit, "app": self.TestApp, "app_unittests": self.TestApp, - "ui_base": self.TestUIBase, "ui_base_unittests": self.TestUIBase, + "ui_unit": self.TestUIUnit, "ui_unittests": self.TestUIUnit, "gfx": self.TestGfx, "gfx_unittests": self.TestGfx, } @@ -294,8 +294,8 @@ class ChromeTests(object): def TestApp(self): return self.SimpleTest("chrome", "app_unittests") - def TestUIBase(self): - return self.SimpleTest("chrome", "ui_base_unittests") + def TestUIUnit(self): + return self.SimpleTest("chrome", "ui_unittests") def TestGfx(self): return self.SimpleTest("chrome", "gfx_unittests") |