Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(92)

Unified Diff: chrome/common/extensions/docs/build/build.py

Issue 10834048: Fix build.py by removing timeout of DumpRenderTree (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/extensions/docs/build/build.py
diff --git a/chrome/common/extensions/docs/build/build.py b/chrome/common/extensions/docs/build/build.py
index b62d23dd21917ea53b601a1af52494b94d6edb5c..831d04ebf6c4b706b7d4dd5f9f21d78d604b0e8f 100755
--- a/chrome/common/extensions/docs/build/build.py
+++ b/chrome/common/extensions/docs/build/build.py
@@ -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()
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698