| Line | |
|---|
| 1 | @ echo off |
|---|
| 2 | if "%1" == "" goto message |
|---|
| 3 | if "%2" == "" goto 1 |
|---|
| 4 | set BOOST_ROOT=%2 |
|---|
| 5 | if "%3" == "" goto 1 |
|---|
| 6 | set ALL_LOCATE_TARGET=%3 |
|---|
| 7 | :1 |
|---|
| 8 | if "%BOOST_ROOT%" == "" goto message |
|---|
| 9 | if not "%ALL_LOCATE_TARGET%" == "" goto 2 |
|---|
| 10 | set ALL_LOCATE_TARGET=%BOOST_ROOT% |
|---|
| 11 | :2 |
|---|
| 12 | echo Running tests for %1 on %BOOST_ROOT% to %ALL_LOCATE_TARGET% |
|---|
| 13 | bjam --dump-test -sTOOLS=%1 test >bjam.log 2>&1 |
|---|
| 14 | process_jam_log <bjam.log %ALL_LOCATE_TARGET% |
|---|
| 15 | compiler_status2 --locate-root %ALL_LOCATE_TARGET% %BOOST_ROOT% compiler_status.html links.html |
|---|
| 16 | goto end |
|---|
| 17 | :message |
|---|
| 18 | echo usage: runtest "<toolset>" "<boost root directory>" "[<target directory>]" |
|---|
| 19 | :end |
|---|
Note: See
TracBrowser
for help on using the repository browser.