Chromium Code Reviews| Index: tools/valgrind/chrome_tests.py |
| diff --git a/tools/valgrind/chrome_tests.py b/tools/valgrind/chrome_tests.py |
| index eef31756b40d8e0ac4edbd3fedfc983853dd7c39..350b360484e11e0a85222660d2c5f8ed29117998 100755 |
| --- a/tools/valgrind/chrome_tests.py |
| +++ b/tools/valgrind/chrome_tests.py |
| @@ -446,6 +446,9 @@ class ChromeTests: |
| "--ui-test-action-timeout=60000", |
| "--ui-test-action-max-timeout=150000"]) |
| + def TestSkia(self): |
| + return self.SimpleTest("skia", "skia_unittests") |
| + |
| def TestSql(self): |
| return self.SimpleTest("chrome", "sql_unittests") |
| @@ -706,6 +709,7 @@ class ChromeTests: |
| "remoting": TestRemoting, "remoting_unittests": TestRemoting, |
| "safe_browsing": TestSafeBrowsing, "safe_browsing_tests": TestSafeBrowsing, |
| "sandbox": TestLinuxSandbox, "sandbox_linux_unittests": TestLinuxSandbox, |
| + "skia_unittests": TestSkia, |
|
Nico
2015/01/06 20:32:23
for some reason, everything else has two entries h
tfarina
2015/01/06 23:25:39
Done.
|
| "sql": TestSql, "sql_unittests": TestSql, |
| "sync": TestSync, "sync_unit_tests": TestSync, |
| "sync_integration_tests": TestSyncIntegration, |