diff options
-rwxr-xr-x | 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 index f750e19..59f6c2a 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,-audio,-gui']) + args.extend(['-u', 'all,-largefile,-network,-urlfetch,-audio,-gui']) args.extend(regrtest_args) print(' '.join(args)) os.execv(sys.executable, args) |