summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xtools/heapcheck/chrome_tests.py4
-rwxr-xr-xtools/valgrind/chrome_tests.py4
2 files changed, 8 insertions, 0 deletions
diff --git a/tools/heapcheck/chrome_tests.py b/tools/heapcheck/chrome_tests.py
index c3c2ae6..a27e395 100755
--- a/tools/heapcheck/chrome_tests.py
+++ b/tools/heapcheck/chrome_tests.py
@@ -96,6 +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.TestIUBase,
"gfx": self.TestGfx, "gfx_unittests": self.TestGfx,
}
@@ -293,6 +294,9 @@ class ChromeTests(object):
def TestApp(self):
return self.SimpleTest("chrome", "app_unittests")
+ def TestUIBase(self):
+ return self.SimpleTest("chrome", "ui_base_unittests")
+
def TestGfx(self):
return self.SimpleTest("chrome", "gfx_unittests")
diff --git a/tools/valgrind/chrome_tests.py b/tools/valgrind/chrome_tests.py
index 447db80..4618778 100755
--- a/tools/valgrind/chrome_tests.py
+++ b/tools/valgrind/chrome_tests.py
@@ -264,6 +264,9 @@ class ChromeTests:
def TestApp(self):
return self.SimpleTest("chrome", "app_unittests")
+ def TestUIBase(self):
+ return self.SimpleTest("chrome", "ui_base_unittests")
+
def TestGfx(self):
return self.SimpleTest("chrome", "gfx_unittests")
@@ -439,6 +442,7 @@ class ChromeTests:
"ui": TestUI, "ui_tests": TestUI,
"unit": TestUnit, "unit_tests": TestUnit,
"app": TestApp, "app_unittests": TestApp,
+ "ui_base": TestUIBase, "ui_base_unittests": TestUIBase,
"gfx": TestGfx, "gfx_unittests": TestGfx,
}