diff options
author | erikkay@google.com <erikkay@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-05 18:37:42 +0000 |
---|---|---|
committer | erikkay@google.com <erikkay@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-05 18:37:42 +0000 |
commit | efd3f9e1abc7eb615492cb9ee4c1e9b13fbb25cb (patch) | |
tree | ff286e631e0f7566c1a9bf6dc7fba55f1dcfd643 /tools/purify/common.py | |
parent | 7f0ebc9a390a168a412c4b4a217761d7d72d4b25 (diff) | |
download | chromium_src-efd3f9e1abc7eb615492cb9ee4c1e9b13fbb25cb.zip chromium_src-efd3f9e1abc7eb615492cb9ee4c1e9b13fbb25cb.tar.gz chromium_src-efd3f9e1abc7eb615492cb9ee4c1e9b13fbb25cb.tar.bz2 |
A few minor tweaks to Purify options that should allow us to enable a few tests that were previously disabled as well as dealing with a few occasional hangs and crashes.
Review URL: http://codereview.chromium.org/23006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@9228 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/purify/common.py')
-rw-r--r-- | tools/purify/common.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/purify/common.py b/tools/purify/common.py index a684bb6..d384514 100644 --- a/tools/purify/common.py +++ b/tools/purify/common.py @@ -52,8 +52,7 @@ class TimeoutError(Exception): pass def _print_line(line, flush=True): # Printing to a text file (including stdout) on Windows always winds up # using \r\n automatically. On buildbot, this winds up being read by a master - # running on Linux, so this is a pain. Unfortunately, it doesn't matter what - # we do here, so just leave this comment for future reference. + # running on Linux, so we manually convert crlf to '\n' print line.rstrip() + '\n', if flush: sys.stdout.flush() |