Chromium Code Reviews| Index: tools/valgrind/chrome_tests.py |
| diff --git a/tools/valgrind/chrome_tests.py b/tools/valgrind/chrome_tests.py |
| index bd59339fbd55b93caaab25391b7f1966bad76ec9..3beb585b3ee3f5528c4ff37f8151087220a566f0 100755 |
| --- a/tools/valgrind/chrome_tests.py |
| +++ b/tools/valgrind/chrome_tests.py |
| @@ -307,6 +307,9 @@ class ChromeTests: |
| def TestSync(self): |
| return self.SimpleTest("chrome", "sync_unit_tests") |
| + def TestSyncIntegration(self): |
| + return self.SimpleTest("chrome", "sync_integration_tests") |
|
Timur Iskhodzhanov
2011/02/17 10:37:02
What are sync_integration_tests?
Do they spawn Ch
Timur Iskhodzhanov
2011/02/17 10:39:13
Self-answer: yes, they do.
In this case, you shou
Nicolas Zea
2011/02/17 21:07:51
Done.
|
| + |
| def TestLayoutChunk(self, chunk_num, chunk_size): |
| # Run tests [chunk_num*chunk_size .. (chunk_num+1)*chunk_size) from the |
| # list of tests. Wrap around to beginning of list at end. |
| @@ -428,6 +431,7 @@ class ChromeTests: |
| "safe_browsing": TestSafeBrowsing, "safe_browsing_tests": TestSafeBrowsing, |
| "startup": TestStartup, "startup_tests": TestStartup, |
| "sync": TestSync, "sync_unit_tests": TestSync, |
| + "sync_integration_tests": TestSyncIntegration, |
|
Timur Iskhodzhanov
2011/02/17 10:37:02
You may also add
"sync_integration": TestSyncInteg
Nicolas Zea
2011/02/17 21:07:51
Done.
|
| "test_shell": TestTestShell, "test_shell_tests": TestTestShell, |
| "ui": TestUI, "ui_tests": TestUI, |
| "unit": TestUnit, "unit_tests": TestUnit, |