Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | When dynamically compiling C# code within the test suite, disable warning 1701 on .NET Core. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | netStandard21 |
Files: | files | file ages | folders |
SHA1: |
f5021afcb3ebec969639ab9860ecb39a |
User & Date: | mistachkin 2019-10-07 03:26:19.319 |
Context
2019-10-07
| ||
04:11 | Fix several missing test constraints. check-in: 5dc7e573b1 user: mistachkin tags: netStandard21 | |
03:26 | When dynamically compiling C# code within the test suite, disable warning 1701 on .NET Core. check-in: f5021afcb3 user: mistachkin tags: netStandard21 | |
03:07 | Update some tests. check-in: db37d8cc30 user: mistachkin tags: netStandard21 | |
Changes
Changes to Externals/Eagle/lib/Eagle1.0/vendor.eagle.
︙ | ︙ | |||
541 542 543 544 545 546 547 548 549 550 551 552 553 554 | [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). # | > > > > > > > > > > > | 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 | [list 5 18] [list 5 20] [list 5 22]] } else { return [list] } } } } # # HACK: When using [compileCSharp] on .NET Core 3.0, it will produce # compiler warnings complaining about mismatched versions of the # .NET Standard reference assemblies, e.g. 2.0 versus 2.1; Since # the test suite considers these warnings to be an indication of # test failure, we disable them here. # if {![info exists no(disableWarning1701)] && [isDotNetCore]} then { lappend ::eagle_platform(csharpOptions) nowarn:1701 } # # 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). # |
︙ | ︙ |