Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Also support setting the specific release version to use for testing. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
c506ce5a7b8eb2d6a03824970e86c5eb |
User & Date: | mistachkin 2013-11-01 08:11:53.231 |
Context
2013-11-05
| ||
06:49 | For the batch build tool, automate modification of the 'include.vsprops' file, if necessary. check-in: a0780d663b user: mistachkin tags: trunk | |
2013-11-01
| ||
08:11 | Also support setting the specific release version to use for testing. check-in: c506ce5a7b user: mistachkin tags: trunk | |
06:33 | Add a diagnostic message if the LKG directory is not set. check-in: 601536b42f user: mistachkin tags: trunk | |
Changes
Changes to Externals/Eagle/lib/Eagle1.0/vendor.eagle.
︙ | ︙ | |||
180 181 182 183 184 185 186 | # # NOTE: Check for any overridden settings that may have been specified via # the command line, etc. # checkForTestOverrides stdout [expr {[info exists test_overrides] ? \ $test_overrides : [list binary_directory build_base_directory \ build_directory common_directory connection_flags database_directory \ | | | 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 | # # NOTE: Check for any overridden settings that may have been specified via # the command line, etc. # checkForTestOverrides stdout [expr {[info exists test_overrides] ? \ $test_overrides : [list binary_directory build_base_directory \ build_directory common_directory connection_flags database_directory \ datetime_format release_version scratch_directory temporary_directory \ test_configuration test_configurations test_constraints \ test_machine test_overrides test_platform test_suite test_year \ test_years test_year_clr_v2 test_year_clr_v4 vendor_directory]}] false # # NOTE: Set the name of the running test suite, if necessary. # |
︙ | ︙ |
Changes to Tests/common.eagle.
︙ | ︙ | |||
313 314 315 316 317 318 319 320 321 322 323 324 325 326 | # set native [hasRuntimeOption native] return [joinBuildDirectory $native [getBuildBaseDirectory] \ [getBuildYear] [getBuildPlatform $native] [getBuildConfiguration]] } } proc getBuildFileName { fileName } { # # NOTE: Returns the specified file name as if it were located in the # build directory, discarding any directory information present # in the file name as provided by our caller. # | > > > > > > > > > > > > > > > > > > > > | 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 | # set native [hasRuntimeOption native] return [joinBuildDirectory $native [getBuildBaseDirectory] \ [getBuildYear] [getBuildPlatform $native] [getBuildConfiguration]] } } proc getReleaseVersion {} { # # NOTE: Figure out the release version for use with the build directory # when checking for available releases. # if {[info exists ::release_version] && \ [string length $::release_version] > 0} then { # # NOTE: The release version has been overridden; therefore, use it # verbatim. # return $::release_version } else { # # NOTE: No release version is available, return an empty string. # return "" } } proc getBuildFileName { fileName } { # # NOTE: Returns the specified file name as if it were located in the # build directory, discarding any directory information present # in the file name as provided by our caller. # |
︙ | ︙ | |||
818 819 820 821 822 823 824 | # # NOTE: Check for past releases of System.Data.SQLite in the directory # contained in the "System.Data.SQLite" environment variable, if # present. # if {[info exists ::env(System.Data.SQLite)] && \ [string length $::env(System.Data.SQLite)] > 0} then { | > | | 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 | # # NOTE: Check for past releases of System.Data.SQLite in the directory # contained in the "System.Data.SQLite" environment variable, if # present. # if {[info exists ::env(System.Data.SQLite)] && \ [string length $::env(System.Data.SQLite)] > 0} then { set directory [file nativename [file join \ $::env(System.Data.SQLite) [getReleaseVersion]]] set fileName [file nativename [file join $directory \ System.Data.SQLite.dll]] tputs $channel [appendArgs \ "---- checking for System.Data.SQLite release \"" \ $fileName "\"... "] |
︙ | ︙ |