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

Unified Diff: net/test/python_utils.cc

Issue 2481823003: net: append -S to python invocation in the test server (Closed)
Patch Set: Created 4 years, 1 month 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 | « no previous file | no next file » | 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 208e1b924fc3090d033cbd541afa09918bd9c491..6e19ea5e38e4212aba22a880cbf196a16aa84fcf 100644
--- a/net/test/python_utils.cc
+++ b/net/test/python_utils.cc
@@ -116,5 +116,8 @@ bool GetPythonCommand(base::CommandLine* python_cmd) {
// gtest output in buildbot log files. See http://crbug.com/147368.
python_cmd->AppendArg("-u");
+ // Prevent using system-installed libraries. Use hermetic versioned copies.
+ python_cmd->AppendArg("-S");
+
return true;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698