summaryrefslogtreecommitdiffstats
path: root/Tools
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-10-01 14:41:48 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-10-01 14:41:48 (GMT)
commit87ae0a2804d71b2452edf3536ebc09da7a9577a0 (patch)
treebd11ded4ff44e1a2f32968c87d89c753b04465cb /Tools
parent0b1d3489906e0047808ee4468fb9681a3e1a8485 (diff)
downloadcpython-87ae0a2804d71b2452edf3536ebc09da7a9577a0.zip
cpython-87ae0a2804d71b2452edf3536ebc09da7a9577a0.tar.gz
cpython-87ae0a2804d71b2452edf3536ebc09da7a9577a0.tar.bz2
Backout of changeset 228fd2bd83a5 by Nadeem Vawda in branch 'default':
Issue #12804: Prevent "make test" from using network resources.
Diffstat (limited to 'Tools')
-rwxr-xr-xTools/scripts/run_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/scripts/run_tests.py b/Tools/scripts/run_tests.py
index 59f6c2a..f750e19 100755
--- a/Tools/scripts/run_tests.py
+++ b/Tools/scripts/run_tests.py
@@ -37,7 +37,7 @@ def main(regrtest_args):
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)