[Python-checkins] cpython: Backout of changeset 228fd2bd83a5 by Nadeem Vawda in branch 'default':

antoine.pitrou python-checkins at python.org
Sat Oct 1 16:45:25 CEST 2011


http://hg.python.org/cpython/rev/7fabd75a6ae4
changeset:   72564:7fabd75a6ae4
user:        Antoine Pitrou <solipsis at pitrou.net>
date:        Sat Oct 01 16:41:48 2011 +0200
summary:
  Backout of changeset 228fd2bd83a5 by Nadeem Vawda in branch 'default':
Issue #12804: Prevent "make test" from using network resources.

files:
  Tools/scripts/run_tests.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Tools/scripts/run_tests.py b/Tools/scripts/run_tests.py
--- a/Tools/scripts/run_tests.py
+++ b/Tools/scripts/run_tests.py
@@ -37,7 +37,7 @@
     if not any(is_multiprocess_flag(arg) for arg in regrtest_args):
         args.extend(['-j', '0'])  # Use all CPU cores
     if not any(is_resource_use_flag(arg) for arg in regrtest_args):
-        args.extend(['-u', 'all,-largefile,-network,-urlfetch,-audio,-gui'])
+        args.extend(['-u', 'all,-largefile,-audio,-gui'])
     args.extend(regrtest_args)
     print(' '.join(args))
     os.execv(sys.executable, args)

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list