diff options
author | pam@chromium.org <pam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-22 03:57:46 +0000 |
---|---|---|
committer | pam@chromium.org <pam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-22 03:57:46 +0000 |
commit | 036c24fa2e050d0a781f21ea6f68aeada9f28e94 (patch) | |
tree | 80eb048509e50bcfa6aaa0a6e02fed1cf5b196a2 /webkit | |
parent | b7f0588eacdc379330d315c68b749130d1f2ed2f (diff) | |
download | chromium_src-036c24fa2e050d0a781f21ea6f68aeada9f28e94.zip chromium_src-036c24fa2e050d0a781f21ea6f68aeada9f28e94.tar.gz chromium_src-036c24fa2e050d0a781f21ea6f68aeada9f28e94.tar.bz2 |
Add diagnostic information to help track down why the Purify layout tests
are occasionally hanging and can't be killed.
TBR=erikkay
BUG=7834
TEST=none
Review URL: http://codereview.chromium.org/27039
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10156 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit')
-rwxr-xr-x | webkit/tools/layout_tests/run_webkit_tests.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/webkit/tools/layout_tests/run_webkit_tests.py b/webkit/tools/layout_tests/run_webkit_tests.py index 71b114a..1494f64 100755 --- a/webkit/tools/layout_tests/run_webkit_tests.py +++ b/webkit/tools/layout_tests/run_webkit_tests.py @@ -101,8 +101,11 @@ class TestRunner: self._PrepareListsAndPrintOutput() def __del__(self): + logging.info("flushing stdout") sys.stdout.flush() + logging.info("flushing stderr") sys.stderr.flush() + logging.info("stopping http server") # Stop the http server. self._http_server.Stop() |