Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Enhance the test suite infrastructure to permit a non-default .NET Framework version to be used for a particular 'build year'. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
13498a49797c5110d76302349d884565 |
User & Date: | mistachkin 2015-07-24 00:59:31.195 |
Original Comment: | Enhance the test suite infrastructure to permit a non-default .NET Framwork version to be used for a particular 'build year'. |
Context
2015-07-24
| ||
19:18 | Update SQLite core library to the latest RC. check-in: 8dbd32a7ae user: mistachkin tags: trunk | |
00:59 | Enhance the test suite infrastructure to permit a non-default .NET Framework version to be used for a particular 'build year'. check-in: 13498a4979 user: mistachkin tags: trunk | |
00:17 | Update SQLite core library to the latest trunk code. check-in: d4447158f6 user: mistachkin tags: trunk | |
Changes
Changes to Externals/Eagle/lib/Eagle1.0/vendor.eagle.
︙ | ︙ | |||
336 337 338 339 340 341 342 | # 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 execute_on_setup release_version scratch_directory \ temporary_directory test_clr test_clr_v2 test_clr_v4 \ test_configuration test_configurations test_constraints test_machine \ | | > | | | 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 | # 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 execute_on_setup release_version scratch_directory \ temporary_directory test_clr test_clr_v2 test_clr_v4 \ test_configuration test_configurations test_constraints test_machine \ test_net_fx test_net_fx_2005 test_net_fx_2008 test_net_fx_2010 \ test_net_fx_2012 test_net_fx_2013 test_net_fx_2015 test_overrides \ test_platform test_suite test_year test_years test_year_clr_v2 \ test_year_clr_v4 vendor_directory vendor_test_directory]}] false # # NOTE: Set the name of the running test suite, if necessary. # if {![info exists test_suite]} then { set test_suite "System.Data.SQLite Test Suite for Eagle" } |
︙ | ︙ |
Changes to lib/System.Data.SQLite/common.eagle.
︙ | ︙ | |||
175 176 177 178 179 180 181 182 | [string length $::test_net_fx] > 0} then { # # NOTE: Use the specified test .NET Framework. # return $::test_net_fx } else { set year [getBuildYear] | > > > > > > > > > > > > > > | | | | | | | | | | | | | | | < | | | | | | > | 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 | [string length $::test_net_fx] > 0} then { # # NOTE: Use the specified test .NET Framework. # return $::test_net_fx } else { set year [getBuildYear] set yearVarName [appendArgs ::test_net_fx_ $year] if {[info exists $yearVarName] && \ [string length [set $yearVarName]] > 0} then { # # NOTE: Use the specified test .NET Framework, based on the build # year. # return [set $yearVarName] } else { # # NOTE: Fallback to the "well known" .NET Framework version that # is most closely associated with a particular version of # Visual Studio. # switch -exact -- $year { 2005 { return netFx20 } 2008 { return netFx35 } 2010 { return netFx40 } 2012 { return netFx45 } 2013 { return netFx451; # TODO: Or "netFx452"? } 2015 { return netFx46 } default { return netFx35; # TODO: Good "fallback" default? } } } } } # # NOTE: This procedure should return non-zero if the configured test |
︙ | ︙ |