Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(104)

Unified Diff: net/test/python_utils.cc

Issue 211173006: Perform tlslite 0.3.8 -> 0.4.6 renames ahead of time. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: More fixes. Oops. Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/policy/test/policy_testserver.py ('k') | third_party/tlslite/README.chromium » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/test/python_utils.cc
diff --git a/net/test/python_utils.cc b/net/test/python_utils.cc
index a67b2c129458896d2779d70eb404b8e17ba32a80..ce483f0e9a6108fa84b1be185a7bb1b55e9ef015 100644
--- a/net/test/python_utils.cc
+++ b/net/test/python_utils.cc
@@ -120,6 +120,9 @@ bool GetPythonCommand(CommandLine* python_cmd) {
// 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");
+ // Don't generate .pyc files. This avoids future problems if upstreams for our
+ // bundled libraries rename more files. See http://crbug.com/356276
+ python_cmd->AppendArg("-B");
Ryan Sleevi 2014/03/31 19:42:14 Someone from infra should review this change - as
Peter Mayo (wrong one) 2014/04/03 21:16:30 I certainly don't want to see this (independent) c
davidben 2014/04/03 21:29:33 What are the better ways we have? It's a problem r
return true;
}
« no previous file with comments | « chrome/browser/policy/test/policy_testserver.py ('k') | third_party/tlslite/README.chromium » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698