Chromium Code Reviews| Index: tools/valgrind/chrome_tests.py |
| =================================================================== |
| --- tools/valgrind/chrome_tests.py (revision 19942) |
| +++ tools/valgrind/chrome_tests.py (working copy) |
| @@ -88,6 +88,7 @@ |
| "test_shell": self.TestTestShell, "test_shell_tests": self.TestTestShell, |
| "ui": self.TestUI, "ui_tests": self.TestUI, |
| "unit": self.TestUnit, "unit_tests": self.TestUnit, |
| + "app": self.TestApp, "app_unittests": self.TestApp, |
|
M-A Ruel
2009/07/08 14:33:15
alignment
|
| } |
| if test not in self._test_list: |
| @@ -257,6 +258,9 @@ |
| def TestUnit(self): |
| return self.SimpleTest("chrome", "unit_tests") |
| + def TestApp(self): |
| + return self.SimpleTest("chrome", "app_tests") |
| + |
| def TestUI(self): |
| return self.SimpleTest("chrome", "ui_tests", |
| valgrind_test_args=[ |