summaryrefslogtreecommitdiff
path: root/tests/src/readytorun
AgeCommit message (Collapse)AuthorFilesLines
2016-01-04Fix compilation of Object.GetType intrinsic in ReadyToRun modeJan Kotas1-0/+8
In ReadyToRun mode, the method entrypoint to call is always given to the JIT via getCallInfo. GenTreeIntrinsic was dropping this entrypoint that caused methods that use Object.GetType intrinsics to fail to compile in ReadyToRun mode. It is a fatal error in CoreRT because of there is no fallback to JIT at runtime. The fix is to pass this entrypoint around in GenTreeIntrinsic. Added a test case in the ReadyToRun unit test.
2015-11-24Update auto-generated project.lock.jsonJan Kotas3-1017/+5646
2015-10-18Managed Test Portdotnet-bot6-9/+2376
This is a collection of managed runtime tests from an internal legacy test tree.
2015-10-15Changes to Test InfrastructureKoundinya Veluri10-620/+1341
The following changes are being submitted in order to prepare for a large collection of tests to be ported from the internal legacy test tree. - Adds "build kinds" to the test tree. - Adds some documentation for the test tree - Adds a Test Priority feature (see documentation Documentation/project-docs/tests.md for more information. - Dropped the cs_template.csproj types and converted to individual CSProject files.
2015-09-05Add mappings for ReadyToRun helpers used by llilc:Eugene Rozenfeld1-32/+51
READYTORUN_HELPER_ThrowNullRef and READYTORUN_HELPER_ThrowDivZero. Allow ReadyToRun tests to be run with llilc.
2015-09-02Package updates and fixesMatt Mitchell13-43/+2824
1) Float package versions 2) Change readytorun packages to use project.json. The versions that were referenced in the packages.config didn't actually exist anyway, and on machines with cleaner caches, might cause a build breka 3) Lock SIMD packages
2015-08-28Ensure ReadyToRun test verifies version resiliencyJan Vorlicek9-23/+125
This change modifies the ReadyToRun test so that it verifies assembly version resiliency.
2015-08-26Add ready to run testsJan Vorlicek8-0/+940
Add tests to verify ready to run handles versioning correctly.