summaryrefslogtreecommitdiffstats
path: root/tools/purify/chrome_tests.py
diff options
context:
space:
mode:
authorhuanr@chromium.org <huanr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-07-17 15:52:20 +0000
committerhuanr@chromium.org <huanr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-07-17 15:52:20 +0000
commitb4c677e75d3a9d2b5a0fabdc20aa9e7715c69afe (patch)
tree7b2d7e95e22ee88cc6894f2d1c606b65d225c18b /tools/purify/chrome_tests.py
parente5678149002cbb0955b0b062647f965aae63976d (diff)
downloadchromium_src-b4c677e75d3a9d2b5a0fabdc20aa9e7715c69afe.zip
chromium_src-b4c677e75d3a9d2b5a0fabdc20aa9e7715c69afe.tar.gz
chromium_src-b4c677e75d3a9d2b5a0fabdc20aa9e7715c69afe.tar.bz2
Reduce number of slices when running UI tests under purify
BUG=16006 TEST=none. Review URL: http://codereview.chromium.org/149794 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@20956 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/purify/chrome_tests.py')
-rw-r--r--tools/purify/chrome_tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/purify/chrome_tests.py b/tools/purify/chrome_tests.py
index b8c9a03..9678dc4 100644
--- a/tools/purify/chrome_tests.py
+++ b/tools/purify/chrome_tests.py
@@ -354,8 +354,8 @@ class ChromeTests:
# may get skipped in the current cycle. For more discussion on this issue,
# see http://codereview.chromium.org/149600.
- # Break UI tests into 30 slices so we have about 30 minutes per run.
- batch_count = 30
+ # Break UI tests into 16 slices so we have about 30-40 minutes per run.
+ batch_count = 16
batch_index = 0
batch_index_file = os.path.join(os.environ["TEMP"],
"purify_ui_batch_index.txt")