Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-04-07Add support for directly running CoreCLR Interop tests in CoreRTFaizur Rahman
2016-12-02Skip duplicate EH clauses (#2288)Jan Kotas
- Update RyuJIT to pick up the actual fix - Remove TODO and add assert to verify there are no duplicate clauses Fixes issue #2262
2016-11-29Update RyuJIT (#2276)Jan Kotas
Fixes https://github.com/dotnet/corert/issues/2255
2016-11-27Store the relocation offset delta in the code stream (#2271)Jan Kotas
RyuJIT depends on the relocation offset delta to be stored in the code stream because of it applies additional fixups to it. Tweak the list of Top200 tests to include coverage for this issue. Fixes #2254
2016-10-29CoreCLR Test Subset Selection (#2089)Simon Nattress
Provide a choice of different sets of the CoreCLR test tree to run: - Top200 tests selected from the various areas of the test tree intended to give broad coverage quickly - KnownGood tests; the set of tests validated as passing on CoreRT - All CoreCLR tests (Many of which are known to fail) Make /mode <ryujit|cpp> actually work with local tests (useful for getting test rsp or artifacts of Ryujit tests without the cpp mode blowing them away). Clean up test documentation to reflect what the test harness does these days. * Allow tests to be specified inclusively Expand the test selection process to allow tests to be included instead of just excluding from all found cmd files. If at least one test is included via <IncludeList />, skip scanning the test tree for *.cmd and only take explicitly included tests. Exclusions can still be applied to these tests and will override inclusions.