????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 216.73.216.163 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/self/root/home/b8009/Python-3.6.3/Tools/scripts/ |
Upload File : |
"""Run Python's test suite in a fast, rigorous way. The defaults are meant to be reasonably thorough, while skipping certain tests that can be time-consuming or resource-intensive (e.g. largefile), or distracting (e.g. audio and gui). These defaults can be overridden by simply passing a -u option to this script. """ import os import sys import test.support try: import threading except ImportError: threading = None def is_multiprocess_flag(arg): return arg.startswith('-j') or arg.startswith('--multiprocess') def is_resource_use_flag(arg): return arg.startswith('-u') or arg.startswith('--use') def main(regrtest_args): args = [sys.executable, '-W', 'default', # Warnings set to 'default' '-bb', # Warnings about bytes/bytearray '-E', # Ignore environment variables ] # Allow user-specified interpreter options to override our defaults. args.extend(test.support.args_from_interpreter_flags()) # Workaround for issue #20361 args.extend(['-W', 'error::BytesWarning']) args.extend(['-m', 'test', # Run the test suite '-r', # Randomize test order '-w', # Re-run failed tests in verbose mode ]) if sys.platform == 'win32': args.append('-n') # Silence alerts under Windows if threading and 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(regrtest_args) print(' '.join(args)) if sys.platform == 'win32': from subprocess import call sys.exit(call(args)) else: os.execv(sys.executable, args) if __name__ == '__main__': main(sys.argv[1:])