Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 87ae0a2

Browse files
committed
Backout of changeset 228fd2bd83a5 by Nadeem Vawda in branch 'default':
Issue #12804: Prevent "make test" from using network resources.
1 parent 0b1d348 commit 87ae0a2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Tools/scripts/run_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def main(regrtest_args):
3737
if not any(is_multiprocess_flag(arg) for arg in regrtest_args):
3838
args.extend(['-j', '0']) # Use all CPU cores
3939
if not any(is_resource_use_flag(arg) for arg in regrtest_args):
40-
args.extend(['-u', 'all,-largefile,-network,-urlfetch,-audio,-gui'])
40+
args.extend(['-u', 'all,-largefile,-audio,-gui'])
4141
args.extend(regrtest_args)
4242
print(' '.join(args))
4343
os.execv(sys.executable, args)

0 commit comments

Comments
 (0)