summaryrefslogtreecommitdiffstats
path: root/webkit
diff options
context:
space:
mode:
authorpamg@google.com <pamg@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-11-11 23:25:21 +0000
committerpamg@google.com <pamg@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-11-11 23:25:21 +0000
commit3e359b1b2d6abe1f6f2111d99fdcceb3c78e86d5 (patch)
treefa5ea2c9cbe3874a922c397714ffadbf53c21dce /webkit
parent30b458df995eeb1262929df1ac472e5972410d31 (diff)
downloadchromium_src-3e359b1b2d6abe1f6f2111d99fdcceb3c78e86d5.zip
chromium_src-3e359b1b2d6abe1f6f2111d99fdcceb3c78e86d5.tar.gz
chromium_src-3e359b1b2d6abe1f6f2111d99fdcceb3c78e86d5.tar.bz2
Temporarily disable collecting and appending stderr output, to see if it makes
the webkit tests stop hanging. TBR=pinkerton TEST=covered by layout tests BUG=none Review URL: http://codereview.chromium.org/10614 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@5226 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit')
-rw-r--r--webkit/tools/layout_tests/layout_package/test_shell_thread.py24
1 files changed, 12 insertions, 12 deletions
diff --git a/webkit/tools/layout_tests/layout_package/test_shell_thread.py b/webkit/tools/layout_tests/layout_package/test_shell_thread.py
index 466d7d7..45f8d26 100644
--- a/webkit/tools/layout_tests/layout_package/test_shell_thread.py
+++ b/webkit/tools/layout_tests/layout_package/test_shell_thread.py
@@ -80,18 +80,18 @@ def ProcessOutput(proc, filename, test_uri, test_types, test_args):
# If we had any stderr output, append that. This is not ideal, but at least
# it'll catch errors.
- line = proc.stderr.readline()
- while line.rstrip() != "#EOF":
- # TODO(pamg): We suppress this stderr message temporarily so we can run
- # the tests deterministically until someone has a chance to fix the
- # underlying problem.
- # See http://code.google.com/p/chromium/issues/detail?id=4285
- if (line != '' and
- not line.endswith('alias ISO-8859-8-I maps to ISO-8859-8-I already, '
- 'but someone is trying to make it map to '
- 'ISO-8859-8')):
- outlines.append(line)
- line = proc.stderr.readline()
+# line = proc.stderr.readline()
+# while line.rstrip() != "#EOF":
+# # TODO(pamg): We suppress this stderr message temporarily so we can run
+# # the tests deterministically until someone has a chance to fix the
+# # underlying problem.
+# # See http://code.google.com/p/chromium/issues/detail?id=4285
+# if (line != '' and
+# not line.endswith('alias ISO-8859-8-I maps to ISO-8859-8-I already, '
+# 'but someone is trying to make it map to '
+# 'ISO-8859-8')):
+# outlines.append(line)
+# line = proc.stderr.readline()
# Check the output and save the results.
for test_type in test_types: