Commit a13fcbc4 authored by battre@chromium.org's avatar battre@chromium.org

Fix build.py by removing timeout of DumpRenderTree

build.py times out if not limited to a specific page. This CL disables the timeout.


BUG=no


Review URL: https://chromiumcodereview.appspot.com/10834048

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148994 0039d316-1c4b-4281-b951-d872f2087c98
parent 2036976d
......@@ -80,7 +80,7 @@ def RenderPages(family, dump_render_tree, single_page_name):
print generator_url
# Run DumpRenderTree and capture result
p = Popen([dump_render_tree, generator_url], stdout=PIPE)
p = Popen([dump_render_tree, "--no-timeout", generator_url], stdout=PIPE)
# The remaining output will be the content of the generated pages.
output = p.stdout.read()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment