summaryrefslogtreecommitdiff
path: root/tests/src/JIT/Generics
AgeCommit message (Collapse)AuthorFilesLines
2017-05-09Disable a few long-running tests.Pat Gavlin2-2/+3
These tests consistently time out under GC stress or heap verification. Each disabled test is known to complete successfully given adequate time.
2017-03-17Delete unused ReferenceLocalMscorlib property from test proj files (#10250)Jan Kotas219-876/+0
Deleted a few other irrelevant properties as well while I was on it. Fixes #7711
2017-03-13Pick up new CoreFX packages and abandon old oneswtgodbe212-830/+6
2017-02-22Fix projects that specified DebugType incorrectlyAndy Ayers2-20/+11
Make conditional DebugType properties uncondtional. Fix debug type and optimize settings for _d and _do suffixed tests. Remove conditional DebugType propery if there is also an unconditonal property.
2017-02-21Fix jit test projects to specify debug type and optimization flagsAndy Ayers7-54/+53
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-25Changes made automatically by Visual StudioPetr Onderka169-705/+543
2016-08-23Cosmetic changes, removing unnceseary files and entries in project files.Rama Krishnan Raghupathy241-1463/+0
Unifying the way project referring mscorlib facade builds
2016-05-09Update license header in most .il files.Russ Keldorph7-8/+21
2016-03-02Remove RestorePackages = true from all test csproj's.Davis Goodin38-38/+0
Restore is performed once as a batch. csproj's share project.jsons, so restoring for each one was a race to update the lockfile.
2016-02-17Port desktop tests that had referencesRichard L Ford2-0/+106
This change ports desktop tests that had references to dlls. It also fixes some of the dll project files. In addition there are some additional tests that were not previously ported (but that do not reference dlls). There are 4 tests that are excluded because of issue #3216.
2016-01-27Update license headersdotnet-bot180-360/+540
2016-01-11Merge pull request #2400 from pgavlin/FixDebugTypesPat Gavlin12-12/+12
Fix DebugType and Optimize values for JIT tests.
2016-01-05Port more JIT tests.Pat Gavlin65-0/+2831
Most of these tests were blocked on unnecessary usage of SerializableAttribute and Environment.ExitCode.
2015-12-31Enable ilasm round trip testingKyungwoo Lee1-0/+1
This enables ilasm round-trip testing for Windows. In order to test il{d}asm on xPlatforms, I injected ilasm round trip before executing the test. This means this step is a part of the runtest not the buildtest -- unlike runtest, currently buildtest is only on Windows. 1. Test batch file is extended to run ildasm followed by ilasm. 2. BuildTest has now an optional flag "ilasmroundtrip" to enable the round-trip tests. Note under this flag, we run both the original binary and the round-trip binary respectively. 3. Test timeout is increased since the round-trip is part of runtime. 4. Did some clean-up on CLRTest.Execute.Batch.targets 5. Bail out the round-trip tests that are built against mscorlib instead of .Net Core. 6. Added /raweh to ildasm due to https://github.com/dotnet/coreclr/issues/2481 7. ilasmroundtrip.targets (~10 tests) are added to enable them by default in a regular test run. Tested with enabling the entire tests (>5K tests) with 'ilasmroundtrip' on, which should be on in a daily or weekly stress mode.
2015-12-22Port additional desktop tests to CoreClrRichard L Ford9-0/+1553
Add exclusions for tests that are failing but that we expect to be able to get working.
2015-12-18Fix DebugType and Optimize values for JIT tests.Pat Gavlin12-12/+12
These values were incorrect given the behavior of the test build.
2015-12-10Import missing JIT tests.Pat Gavlin160-298/+885
These tests were thought to have been ported earlier.
2015-09-03Add System.Console references and replace usages with [System.Console]Bruce Forstall4-34/+55
2015-07-09Move CoreCLR to the modern build tools and dnxMatt Mitchell175-518/+672
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 Ellis188-456/+840
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 Gavlin213-1129/+7777
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/+1265
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-22Add all JIT/Generics test casesBengu Li142-0/+21606
Add all remaining JIT/Generics test cases for JIT. Related proj, config, and sln files added and updated. Passed build, buildtest, runtest.
2015-04-27Add Generic/Exceptions test cases for JITBengu Li16-0/+2110
Add Generic/Exceptions test cases for JIT. Related proj, config files added. Solution file update is delayed to later PRs for parallel working. Passed build, buildtest, runtest.
2015-04-22Add Generics/Fields test cases for JITBengu Li16-0/+1198
Add Generics/Fields test cases for JIT. Related proj, config, and sln files added and updated. Passed build, buildtest, runtest.
2015-04-21Add Generics/Arrays test cases for JITBengu Li45-0/+3880
Add test cases in directory JIT/Generics/Arrays. Related proj, config, and sln files added and updated. Passed build, buildtest, runtest.