summaryrefslogtreecommitdiff
path: root/tests/src/JIT/Methodical/xxobj/ldobj
AgeCommit message (Collapse)AuthorFilesLines
2017-08-16Move less valuable tests to priority 1.Pat Gavlin12-78/+54
2017-03-17Delete unused ReferenceLocalMscorlib property from test proj files (#10250)Jan Kotas12-48/+0
Deleted a few other irrelevant properties as well while I was on it. Fixes #7711
2016-08-23Cosmetic changes, removing unnceseary files and entries in project files.Rama Krishnan Raghupathy13-63/+0
Unifying the way project referring mscorlib facade builds
2016-05-09Update license header in most .il files.Russ Keldorph6-12/+18
2016-04-06Set DebugType to PdbOnly for rel-mode IL testsAndy Ayers6-6/+6
Ensures that execution of these tests always invokes the jit's optimizer, regardless of the build configuration. See issue #4124.
2015-12-10Import missing JIT tests.Pat Gavlin6-12/+12
These tests were thought to have been ported earlier.
2015-09-03Add System.Console references and replace usages with [System.Console]Bruce Forstall6-12/+42
2015-09-03Canonicalize appearance of empty mscorlib assembly references in .il testsBruce Forstall6-6/+6
2015-07-09Move CoreCLR to the modern build tools and dnxMatt Mitchell12-24/+0
This changes moves coreclr onto DNX (same version as corefx). Theoretically, this should allow these tests to target the desktop CLR. All of the old package.config files are gone and replaced with corresponding project.json files. The up front restore behavior is retained. Tests are now buildable individually, though not runnable in a similar fashion.
2015-06-30Speed up package resotre of JIT Test buildMatt Ellis1-6/+0
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 Gavlin13-23/+502
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 Gavlin10-0/+7376
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.