📄 runtest.bat
字号:
@ echo off
if "%1" == "" goto message
if "%2" == "" goto 1
set BOOST_ROOT=%2
if "%3" == "" goto 1
set ALL_LOCATE_TARGET=%3
:1
if "%BOOST_ROOT%" == "" goto message
if not "%ALL_LOCATE_TARGET%" == "" goto 2
set ALL_LOCATE_TARGET=%BOOST_ROOT%
:2
echo Running tests for %1 on %BOOST_ROOT% to %ALL_LOCATE_TARGET%
bjam --dump-test -sTOOLS=%1 test >bjam.log 2>&1
process_jam_log <bjam.log %ALL_LOCATE_TARGET%
compiler_status2 --locate-root %ALL_LOCATE_TARGET% %BOOST_ROOT% compiler_status.html links.html
goto end
:message
echo usage: runtest "<toolset>" "<boost root directory>" "[<target directory>]"
:end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -