Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | In the test suite infrastructure, force the list of 'known' Mono versions to include those released after Eagle beta 44. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
9c6ca7239bbce961b47a04a0c67119f9 |
User & Date: | mistachkin 2019-02-18 20:03:26.360 |
Original Comment: | Force the list of Mono versions to include those released after Eagle beta 44. |
Context
2019-02-18
| ||
20:15 | Tweak comments. check-in: b4af63534e user: mistachkin tags: trunk | |
20:03 | In the test suite infrastructure, force the list of 'known' Mono versions to include those released after Eagle beta 44. check-in: 9c6ca7239b user: mistachkin tags: trunk | |
19:27 | Fix typo in version history docs. check-in: 5a0f60a6f5 user: mistachkin tags: trunk | |
Changes
Changes to Externals/Eagle/lib/Eagle1.0/vendor.eagle.
︙ | ︙ | |||
438 439 440 441 442 443 444 445 446 447 448 449 450 451 | # interpreter to point directly to it. # if {[string length $vendor_test_directory] > 0} then { setupInterpreterTestPath stdout $vendor_test_directory \ [checkForVendorQuiet setupInterpreterTestPath] } } # # HACK: Prevent the Eagle core test suite infrastructure from checking # test constraints that are time-consuming and/or most likely to # be superfluous to third-party test suites (i.e. those that are # not testing the Eagle core library itself). # | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 | # interpreter to point directly to it. # if {[string length $vendor_test_directory] > 0} then { setupInterpreterTestPath stdout $vendor_test_directory \ [checkForVendorQuiet setupInterpreterTestPath] } } # # HACK: When the Eagle core test suite infrastructure is beta 44 or # lower, upgrade the [getKnownMonoVersions] procedure to add # more known versions of the Mono runtime. Eventually, this # override should be removed (i.e. once the Eagle core library # included in "Externals" is updated). # if {[package vcompare \ $::eagle_platform(patchLevel) 1.0.6848.11041] <= 0} then { # # NOTE: Arrange for this procedure to be redefined after it has # been defined by the Eagle.Test.Constraints package -AND- # before it has been used by the [checkForRuntimeVersion] # procedure. # set ::test_script(pre) { proc getKnownMonoVersions { {force false} } { if {$force || ![info exists ::no(monoVersions)]} then { return [list \ [list 2 0] [list 2 2] [list 2 4] [list 2 6] \ [list 2 8] [list 2 10] [list 2 11] [list 3 0] \ [list 3 1] [list 3 2] [list 3 4] [list 3 6] \ [list 3 8] [list 3 10] [list 3 12] [list 4 0] \ [list 4 2] [list 4 4] [list 4 6] [list 4 8] \ [list 5 0] [list 5 2] [list 5 4] [list 5 8] \ [list 5 10] [list 5 12] [list 5 14] [list 5 16] \ [list 5 18] [list 5 20] [list 5 22]] } else { return [list] } } } } # # HACK: Prevent the Eagle core test suite infrastructure from checking # test constraints that are time-consuming and/or most likely to # be superfluous to third-party test suites (i.e. those that are # not testing the Eagle core library itself). # |
︙ | ︙ |