diff options
author | mattm@chromium.org <mattm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-28 07:14:19 +0000 |
---|---|---|
committer | mattm@chromium.org <mattm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-28 07:14:19 +0000 |
commit | 480d8870bb4a007c2816a643106fecec96abe394 (patch) | |
tree | 32c2810fa54a767911c602316368138b33cd476a /net/test/python_utils.cc | |
parent | 84868e93da318ebae5d5264a91d84e12efd036d1 (diff) | |
download | chromium_src-480d8870bb4a007c2816a643106fecec96abe394.zip chromium_src-480d8870bb4a007c2816a643106fecec96abe394.tar.gz chromium_src-480d8870bb4a007c2816a643106fecec96abe394.tar.bz2 |
Hack around testserver issues with stdout and stderr on Win XP bots.
Re-enable python unbuffered output on win.
Re-enable SafeBrowsingServerTest.
BUG=96459,147368
Review URL: https://chromiumcodereview.appspot.com/11316039
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@169876 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/test/python_utils.cc')
-rw-r--r-- | net/test/python_utils.cc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/net/test/python_utils.cc b/net/test/python_utils.cc index d819414..be9facf 100644 --- a/net/test/python_utils.cc +++ b/net/test/python_utils.cc @@ -119,11 +119,9 @@ bool GetPythonCommand(CommandLine* python_cmd) { python_cmd->SetProgram(dir); -#if defined(OS_POSIX) // Launch python in unbuffered mode, so that python output doesn't mix with // gtest output in buildbot log files. See http://crbug.com/147368. python_cmd->AppendArg("-u"); -#endif return true; } |