From 480d8870bb4a007c2816a643106fecec96abe394 Mon Sep 17 00:00:00 2001 From: "mattm@chromium.org" Date: Wed, 28 Nov 2012 07:14:19 +0000 Subject: 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 --- net/test/python_utils.cc | 2 -- 1 file changed, 2 deletions(-) (limited to 'net/test') 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; } -- cgit v1.1