Chromium Code Reviews| Index: tools/valgrind/chrome_tests.py |
| diff --git a/tools/valgrind/chrome_tests.py b/tools/valgrind/chrome_tests.py |
| index a4e6c4df559d9cf9f33a18fac6bdcb44e7265f58..9c7143a0dcbc85f5177613911ddfd148422a9f66 100755 |
| --- a/tools/valgrind/chrome_tests.py |
| +++ b/tools/valgrind/chrome_tests.py |
| @@ -400,6 +400,9 @@ class ChromeTests: |
| def TestKeyboard(self): |
| return self.SimpleTest("keyboard", "keyboard_unittests") |
| + def TestLatency(self): |
| + return self.SimpleTest("latency", "latency_unittests") |
|
Dirk Pranke
2017/04/14 22:32:05
I'm pretty sure this file isn't used any more ...
|
| + |
| def TestMedia(self): |
| return self.SimpleTest("chrome", "media_unittests") |
| @@ -686,6 +689,7 @@ class ChromeTests: |
| "interactive_ui": TestInteractiveUI, |
| "jingle": TestJingle, "jingle_unittests": TestJingle, |
| "keyboard": TestKeyboard, "keyboard_unittests": TestKeyboard, |
| + "latency": TestLatency, "latency_unittests": TestLatency, |
| "layout": TestLayout, "layout_tests": TestLayout, |
| "media": TestMedia, "media_unittests": TestMedia, |
| "message_center": TestMessageCenter, |