Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Batch tool enhancements for testing. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
b799bc86e7ee1168e2b21b32513a7816 |
User & Date: | mistachkin 2014-08-03 01:58:29.661 |
Context
2014-08-03
| ||
02:38 | Remove superfluous 'install.ps1' file that is no longer used. check-in: 6e67c4fdf1 user: mistachkin tags: trunk | |
02:14 | Diagnostic and comment enhancements to the design-time components installer. Merge updates from trunk. check-in: ffe8387567 user: mistachkin tags: designOptions | |
01:58 | Batch tool enhancements for testing. check-in: b799bc86e7 user: mistachkin tags: trunk | |
01:48 | Fix issue with documentation comment. check-in: f2a69275fd user: mistachkin tags: trunk | |
Changes
Changes to Setup/test.bat.
︙ | ︙ | |||
49 50 51 52 53 54 55 | %_AECHO% Enabling automatic build selection... CALL :fn_AppendVariable PREARGS " -runtimeOption autoSelect" ) ) %_VECHO% PreArgs = '%PREARGS%' | | | | | | 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 | %_AECHO% Enabling automatic build selection... CALL :fn_AppendVariable PREARGS " -runtimeOption autoSelect" ) ) %_VECHO% PreArgs = '%PREARGS%' IF NOT DEFINED TEST_FILE ( %_AECHO% No test file specified, using default... SET TEST_FILE=Tests\empty.eagle ) %_VECHO% TestFile = '%TEST_FILE%' IF NOT DEFINED POSTARGS ( %_AECHO% No post-arguments specified, using default... SET POSTARGS=-file "%TEST_FILE%" ) %_VECHO% PostArgs = '%POSTARGS%' IF NOT DEFINED 32BITONLY ( SET EAGLESHELL=EagleShell.exe ) ELSE ( |
︙ | ︙ |
Changes to Setup/test_all.bat.
︙ | ︙ | |||
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 | %_VECHO% Platform = '%PLATFORM%' IF NOT DEFINED YEARS ( SET YEARS=2008 ) %_VECHO% Years = '%YEARS%' IF NOT DEFINED TEST_FILE ( SET TEST_FILE=Tests\all.eagle ) %_VECHO% TestFile = '%TEST_FILE%' IF NOT DEFINED 32BITONLY ( SET EAGLESHELL=EagleShell.exe ) ELSE ( SET EAGLESHELL=EagleShell32.exe ) | > > | 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 | %_VECHO% Platform = '%PLATFORM%' IF NOT DEFINED YEARS ( SET YEARS=2008 ) %_VECHO% Years = '%YEARS%' %_VECHO% PreArgs = '%PREARGS%' IF NOT DEFINED TEST_FILE ( SET TEST_FILE=Tests\all.eagle ) %_VECHO% TestFile = '%TEST_FILE%' %_VECHO% PostArgs = '%POSTARGS%' IF NOT DEFINED 32BITONLY ( SET EAGLESHELL=EagleShell.exe ) ELSE ( SET EAGLESHELL=EagleShell32.exe ) |
︙ | ︙ | |||
137 138 139 140 141 142 143 | IF ERRORLEVEL 1 ( ECHO Failed to delete "bin\%%Y\%%C\bin\SQLite.Interop.*". GOTO errors ) ) IF NOT DEFINED NOMANAGEDONLY ( | | | 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 | IF ERRORLEVEL 1 ( ECHO Failed to delete "bin\%%Y\%%C\bin\SQLite.Interop.*". GOTO errors ) ) IF NOT DEFINED NOMANAGEDONLY ( %__ECHO% "Externals\Eagle\bin\%EAGLESHELL%" %PREARGS% -anyInitialize "set test_year {%%Y}; set test_configuration {%%C}" -file "%TEST_FILE%" %POSTARGS% IF ERRORLEVEL 1 ( ECHO Testing of "%%Y/%%C" managed-only assembly failed. GOTO errors ) ) |
︙ | ︙ | |||
218 219 220 221 222 223 224 | IF ERRORLEVEL 1 ( ECHO Failed to copy "bin\%%Y\%%C\bin\Installer.*" to "bin\%%Y\%PLATFORM%\%%C". GOTO errors ) ) | | | 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 | IF ERRORLEVEL 1 ( ECHO Failed to copy "bin\%%Y\%%C\bin\Installer.*" to "bin\%%Y\%PLATFORM%\%%C". GOTO errors ) ) %__ECHO% "Externals\Eagle\bin\%EAGLESHELL%" %PREARGS% -preInitialize "set test_year {%%Y}; set test_configuration {%%C}" -initialize -runtimeOption native -file "%TEST_FILE%" %POSTARGS% IF ERRORLEVEL 1 ( ECHO Testing of "%%Y/%%C" mixed-mode assembly failed. GOTO errors ) ) ) ELSE ( |
︙ | ︙ |