summaryrefslogtreecommitdiff
path: root/tests/src/JIT/Directed/array-il/_Arrayssimple3.ilproj
AgeCommit message (Collapse)AuthorFilesLines
2017-08-16Move less valuable tests to priority 1.Pat Gavlin1-0/+1
2017-03-17Delete unused ReferenceLocalMscorlib property from test proj files (#10250)Jan Kotas1-4/+0
Deleted a few other irrelevant properties as well while I was on it. Fixes #7711
2017-02-21Fix jit test projects to specify debug type and optimization flagsAndy Ayers1-9/+8
This partially addresses the issues raised in #4124 and #4724 by explicitly and unconditionally setting DebugType and Optimize flags for various test project files. The projects that were fixed are those that did not specify any debug flag settings at all. The fix is to set DebugType to PdbOnly and to set Optimization to true, unless the test has an _r or _rel suffix, in which case Optimization is set false. This impacts 1497 projects, skipping over 311 projects flagged as needing fixes. The projects that remain are the CodeGenBringUp set (for which we plan to clone projects to test the various flag combinations), projects that specify flags but do so in ways where the effective flag settings may vary from DBG to RET, projects that specify the flags redundantly, or projects where the flags are not consistent with the "test case name suffix" rules. The edits were done by a tool using linq-to-xml and so some incidental reformatting has happened.
2016-08-23Cosmetic changes, removing unnceseary files and entries in project files.Rama Krishnan Raghupathy1-3/+0
Unifying the way project referring mscorlib facade builds
2015-12-10Import missing JIT tests.Pat Gavlin1-2/+2
These tests were thought to have been ported earlier.
2015-07-09Move CoreCLR to the modern build tools and dnxMatt Mitchell1-2/+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-24Refactor JIT test projects.Pat Gavlin1-0/+45
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.