Closed rolfbjarne closed 4 months ago
:white_check_mark: All tests on macOS M1 - Mac Ventura (13.0) passed.
Pipeline on Agent Hash: [PR build]
:white_check_mark: All tests on macOS M1 - Mac Big Sur (11.5) passed.
Pipeline on Agent Hash: [PR build]
Pipeline on Agent Hash: [PR build]
:white_check_mark: All Windows Integration Tests passed.
Pipeline on Agent Hash: f96b7b2c037416bab1a179ec136800b424988170 [PR build]
Generator Diff: vsdrops (html) vsdrops (raw diff) gist (raw diff) - Please review changes)
Pipeline on Agent Hash: f96b7b2c037416bab1a179ec136800b424988170 [PR build]
:x: Tests failed on VSTS: simulator tests
2 tests crashed, 1 tests failed, 90 tests passed.
Html Report (VSDrops) Download
:fire: Failed catastrophically on VSTS: simulator tests - fsharp (no summary found).
Html Report (VSDrops) Download
:fire: Failed catastrophically on VSTS: simulator tests - mononative (no summary found).
Html Report (VSDrops) Download
:white_check_mark: cecil: All 1 tests passed. Html Report (VSDrops) Download :white_check_mark: framework: All 4 tests passed. Html Report (VSDrops) Download :white_check_mark: generator: All 1 tests passed. Html Report (VSDrops) Download :white_check_mark: interdependent_binding_projects: All 4 tests passed. Html Report (VSDrops) Download :warning: install_source: No tests selected. Html Report (VSDrops) Download :white_check_mark: introspection: All 4 tests passed. Html Report (VSDrops) Download :white_check_mark: linker: All 40 tests passed. Html Report (VSDrops) Download :warning: mac_binding_project: No tests selected. Html Report (VSDrops) Download :warning: mmp: No tests selected. Html Report (VSDrops) Download :white_check_mark: monotouch: All 29 tests passed. Html Report (VSDrops) Download :white_check_mark: msbuild: All 2 tests passed. Html Report (VSDrops) Download :warning: mtouch: No tests selected. Html Report (VSDrops) Download :warning: xammac: No tests selected. Html Report (VSDrops) Download :white_check_mark: xcframework: All 4 tests passed. Html Report (VSDrops) Download :white_check_mark: xtro: All 1 tests passed. Html Report (VSDrops) Download
Pipeline on Agent Hash: f96b7b2c037416bab1a179ec136800b424988170 [PR build]
:x: Tests failed on VSTS: simulator tests
1 tests crashed, 0 tests failed, 94 tests passed.
:fire: Failed catastrophically on VSTS: simulator tests - dotnettests (no summary found).
Html Report (VSDrops) Download
:white_check_mark: cecil: All 1 tests passed. Html Report (VSDrops) Download :white_check_mark: fsharp: All 4 tests passed. [attempt 2] Html Report (VSDrops) Download :white_check_mark: framework: All 4 tests passed. Html Report (VSDrops) Download :white_check_mark: generator: All 1 tests passed. Html Report (VSDrops) Download :white_check_mark: interdependent_binding_projects: All 4 tests passed. Html Report (VSDrops) Download :warning: install_source: No tests selected. Html Report (VSDrops) Download :white_check_mark: introspection: All 4 tests passed. Html Report (VSDrops) Download :white_check_mark: linker: All 40 tests passed. Html Report (VSDrops) Download :warning: mac_binding_project: No tests selected. Html Report (VSDrops) Download :warning: mmp: No tests selected. Html Report (VSDrops) Download :warning: mononative: No tests selected. [attempt 2] Html Report (VSDrops) Download :white_check_mark: monotouch: All 29 tests passed. Html Report (VSDrops) Download :white_check_mark: msbuild: All 2 tests passed. Html Report (VSDrops) Download :warning: mtouch: No tests selected. Html Report (VSDrops) Download :warning: xammac: No tests selected. Html Report (VSDrops) Download :white_check_mark: xcframework: All 4 tests passed. Html Report (VSDrops) Download :white_check_mark: xtro: All 1 tests passed. Html Report (VSDrops) Download
Pipeline on Agent Hash: f96b7b2c037416bab1a179ec136800b424988170 [PR build]
:white_check_mark: All tests passed on VSTS: simulator tests.
:tada: All 95 tests passed :tada:
:white_check_mark: cecil: All 1 tests passed. Html Report (VSDrops) Download :white_check_mark: dotnettests: All 1 tests passed. [attempt 3] Html Report (VSDrops) Download :white_check_mark: fsharp: All 4 tests passed. [attempt 2] Html Report (VSDrops) Download :white_check_mark: framework: All 4 tests passed. Html Report (VSDrops) Download :white_check_mark: generator: All 1 tests passed. Html Report (VSDrops) Download :white_check_mark: interdependent_binding_projects: All 4 tests passed. Html Report (VSDrops) Download :warning: install_source: No tests selected. Html Report (VSDrops) Download :white_check_mark: introspection: All 4 tests passed. Html Report (VSDrops) Download :white_check_mark: linker: All 40 tests passed. Html Report (VSDrops) Download :warning: mac_binding_project: No tests selected. Html Report (VSDrops) Download :warning: mmp: No tests selected. Html Report (VSDrops) Download :warning: mononative: No tests selected. [attempt 2] Html Report (VSDrops) Download :white_check_mark: monotouch: All 29 tests passed. Html Report (VSDrops) Download :white_check_mark: msbuild: All 2 tests passed. Html Report (VSDrops) Download :warning: mtouch: No tests selected. Html Report (VSDrops) Download :warning: xammac: No tests selected. Html Report (VSDrops) Download :white_check_mark: xcframework: All 4 tests passed. Html Report (VSDrops) Download :white_check_mark: xtro: All 1 tests passed. Html Report (VSDrops) Download
Pipeline on Agent Hash: f96b7b2c037416bab1a179ec136800b424988170 [PR build]
The canonical property we use for the interpreter is
MtouchInterpreter
- and the interpreter is enabled ifMtouchInterpreter
is set to any value (theMtouchInterpreter
value is used to select which assemblies to interpret, the only way to completely disable the interpreter is to not setMtouchInterpreter
at all).So fix a couple of cases of wrong comparison:
UseInterpreter
- which is used to compute a specific value forMtouchInterpreter
- because developers don't have to setUseInterpreter
to enable the interpreter, they can setMtouchInterpreter
directly.MtouchInterpreter
withtrue
: that only checks if the assembly "true" is interpreted (which it rarely is).Fixes https://github.com/dotnet/runtime/issues/96920.
This is a backport of #19812 and #20696.