summaryrefslogtreecommitdiff
path: root/tests/src/JIT/Methodical
AgeCommit message (Collapse)AuthorFilesLines
2015-06-30Speed up package resotre of JIT Test buildMatt Ellis740-1762/+3319
We spend a fair amount of time (six wall clock minutes on my machine) doing package restore for the JIT tests. This is because each project has its own packages.config file, so during the build we call nuget restore for each project. There are only four unique packages.config files for all these tests, so this change moves them to tests/src/JIT/config and updates the project files to consume them from there. This means during the build the `EnsureDependencies` target does not need to invoke nuget restore as often and the build is much faster as a result.
2015-06-24Refactor JIT test projects.Pat Gavlin1359-6532/+52125
This change replaces the template projects used for the ported JIT tests with a single project file per test. This refactoring is intended to clarify exactly which tests from the legacy testbed have been ported and what their dependencies are; this should make later reasoning about these tests more straightforward. This change also disables a number of innocuous warnings in the ported tests for hygenic purposes.
2015-06-10Import the first batch of IL tests.Pat Gavlin396-0/+89382
This set of tests is comprised of IL tests that: - only reference APIs in .Net Core's System.Runtime, System.Runtime.Extensions, and System.Threading contracts - compile to a single executable, - and expect no command line arguments at runtime.
2015-05-21Import more JIT tests.Pat Gavlin385-0/+38518
This imports the remainder of the tests under JIT\Methodical that are able to target CoreCLR. This also contains build fixes for tests under JIT\Directed\coverage\oldtests that were mangled during a previous import.
2015-05-08Add Methodical/NaN test cases for JIT.Bengu Li16-0/+11349
Add Methodical/NaN test cases for JIT. Related proj, config, and sln files added and updated. Passed build, buildtest, runtest. Also added Generic/Exceptions, Methodical/MDArray/DataTypes, Directed/StructPromote tests to AllTestProject.sln.
2015-04-27Add MultiDimensional Array test cases for JITBengu Li17-0/+14197
Add MultiDimensional Array test cases for JIT. Related proj, config files added. Solution file update is delayed to later PRs for parallel working. Passed build, buildtest, runtest.