@echo offrem Run Tests. Run the regression test suite.rem Usage: rt [-d] [-O] [-q] [-x64] regrtest_argsrem -d Run Debug build (python_d.exe). Else release build.rem -O Run python.exe or python_d.exe (see -d) with -O.rem -q "quick" -- normally the tests are run twice, the first timerem after deleting all the .pyc files reachable from Lib/.rem -q runs the tests just once, and without deleting .pyc files.rem -x64 Run the 64-bit build of python (or python_d if -d was specified)rem When omitted, uses %PREFIX% if set or the 32-bit buildrem All leading instances of these switches are shifted off, andrem whatever remains (up to 9 arguments) is passed to regrtest.py.rem For example,rem rt -O -d -x test_threadrem runsrem python_d -O ../lib/test/regrtest.py -x test_threadrem twice, andrem rt -q -g test_binasciirem runsrem python_d ../lib/test/regrtest.py -g test_binasciirem to generate the expected-output file for binascii quickly.remrem Confusing: if you want to pass a comma-separated list, likerem -u network,largefilerem then you have to quote it on the rt line, likerem rt -u "network,largefile"setlocalset pcbuild=%~dp0set suffix=set qmode=set dashO=set regrtestargs=set exe=:CheckOptsif "%1"=="-O" (set dashO=-O) & shift & goto CheckOptsif "%1"=="-q" (set qmode=yes) & shift & goto CheckOptsif "%1"=="-d" (set suffix=_d) & shift & goto CheckOptsif "%1"=="-x64" (set prefix=%pcbuild%amd64) & shift & goto CheckOptsif "%1"=="-arm64" (set prefix=%pcbuild%arm64) & shift & goto CheckOptsif "%1"=="-arm32" (set prefix=%pcbuild%arm32) & shift & goto CheckOptsif NOT "%1"=="" (set regrtestargs=%regrtestargs% %1) & shift & goto CheckOptsif not defined prefix set prefix=%pcbuild%win32set exe=%prefix%\python%suffix%.exeset cmd="%exe%" %dashO% -u -Wd -E -bb -m test %regrtestargs%if defined qmode goto Qmodeecho Deleting .pyc files ..."%exe%" "%pcbuild%rmpyc.py"echo Cleaning _pth files ...if exist %prefix%\*._pth del %prefix%\*._pthecho on%cmd%@echo offecho About to run again without deleting .pyc first:pause:Qmodeecho on%cmd%
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。