Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-08-04Address pull request feedback and fix linux test run script to prevent ↵Sridhar Periyasamy
copying test assemblies to the 'Overlay' directory.
2015-07-23Enable globstar in run-test.shMatt Mitchell
Globstar is not enabled by default, and a recent commit attempting to increase the number of directories being run for the Linux build actually skipped a bunch of stuff. Enable globstar in the script (this is local) to fix. Mark DriveLetter_Unix as a failing test, which appears to have snuck in in the meantime
2015-07-22Respond to PR feedbackNick Guerrera
* Rename shims to match their underlying platform API names * Update guidelines * Add errno conversion TODO * Account for OS X in run-test.sh
2015-07-22Build and deploy native corefx components for test runNick Guerrera
2015-07-21Fix run-test.sh to find all test projectsstephentoub
run-test.sh is currently looking for test projects of the form src/**/tests/*.csproj, but some of our projects are nested a level down from that, e.g. src/**/tests/something/*.csproj.
2015-05-14Merge pull request #1737 from bartonjs/add-hashing-algorithmsJeremy Barton
Add System.Security.Cryptography.Hashing.Algorithms Source and Test
2015-05-14Update Unix TestHost version to 0.0.2dotnet-bot
2015-05-14Fix silly typo in run-testsMatt Mitchell
For whatever reason the current code works on Linux, but on OSX we get an awk error. Should be tolower($0)
2015-04-20aspnetcore50 -> dnxcore50 (match recent change to build process)Matt Mitchell
2015-04-14Grab exit codes from bash-subprocessesMatt Mitchell
2015-04-11Remove no-clobber arg for cpMatt Mitchell
2015-04-11Add missing overlay settingMatt Mitchell
2015-04-11Parallel test execution and allow for runs using release coreclrMatt Mitchell
Change to doing simple parallelism. Also change around the parameters so that we can use a different coreclr or other binaries when running the tests, rather than tying directory to the passed in OS and Configuration. The defaults still behave as they did before.
2015-04-10Copy all dll's instead of just System* when setting up the overlay dirMatt Mitchell
2015-04-10Fix improper string expansion of the non<os> traitMatt Mitchell
2015-04-02Merge pull request #1311 from mmitche/run-test-pathsStephen Toub
Fix paths to coreclr binaries in run test script
2015-04-02Change msbuild property to platforms on linux script.Lakshmi Priya Sekar
2015-04-02Fix paths to coreclr binaries in run test scriptMatt Mitchell
2015-03-31Modify run-test.sh to support skipping tests on specified platforms.Lakshmi Priya Sekar
2015-03-30Initial commit of linux/osx cross testing scriptMatt Mitchell
This script allows for cross testing of Linux/OSX, where we don't have the ability to compile the tests natively. Linux specifically lacks enough msbuild (or a stable enough coreclr) to be able to build the tests and corefx libraries. The script assumes that the public bits for the dependent repositories are available locally (can be specified by parameter). It then builds an overlay directory that can be copied over the test directory for each of the compiled Windows test directories prior to execution. There is some rudimentary control over what gets executed. It looks for a string in the test's csproj file "NotSupportedOperatingSystems.*OS.* which disables the project for the OS. In addition, a switch can be used to specify a pattern of tests to run (this is useful to run a single directory).