diff options
author | erikkay@google.com <erikkay@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-12-17 01:18:37 +0000 |
---|---|---|
committer | erikkay@google.com <erikkay@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-12-17 01:18:37 +0000 |
commit | cf8e24cd0a3d625565f9e76d7f1e8240742c4e8f (patch) | |
tree | 4fc32320a1e003441a73925f54460797dda791a0 /tools | |
parent | 3f97e3fbaee75e0ed70c1f37d195aef9914b20ee (diff) | |
download | chromium_src-cf8e24cd0a3d625565f9e76d7f1e8240742c4e8f.zip chromium_src-cf8e24cd0a3d625565f9e76d7f1e8240742c4e8f.tar.gz chromium_src-cf8e24cd0a3d625565f9e76d7f1e8240742c4e8f.tar.bz2 |
Increase the chunk size for layout tests (do 120 per run rather than 25). This should make each chunk take close to an hour, and thus reduce some of the per-chunk overhead.
TBR=nsylvain
Review URL: http://codereview.chromium.org/14178
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7123 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools')
-rw-r--r-- | tools/purify/chrome_tests.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tools/purify/chrome_tests.py b/tools/purify/chrome_tests.py index d4a1b88..2d4bb60 100644 --- a/tools/purify/chrome_tests.py +++ b/tools/purify/chrome_tests.py @@ -212,9 +212,8 @@ class ChromeTests: # to continuously run small slices of the layout tests under purify rather # than having to run all of them in one shot. chunk_num = 0 - # Tests currently seem to take about 20-30s each, so aim for a chunk that - # takes around 10 minutes. - chunk_size = 25 + # Tests currently seem to take about 20-30s each. + chunk_size = 120 # so about 40-60 minutes per run chunk_file = "purify_layout_chunk.txt" if not run_all: try: |