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
2017-08-16Disable tests that fail on ILC due to not actually running in AppX (#23295)Atsushi Kanamori
Fixes https://github.com/dotnet/corefx/issues/23000
2017-08-16Disable the System.IO failed test on OSX High Sierra (#23276)Tarek Mahmoud Sayed
2017-08-14Modify High Sierra Check and Fix TZ Test (#23171)Tarek Mahmoud Sayed
2017-08-11Moving PlatformDetection to Corefx.Private.TestUtilities assembly (#23109)Tarek Mahmoud Sayed
* Moving PlatformDetection to Corefx.Private.TestUtilities assembly The purpose of this change is to clean up all test projects instead of including the PlatformDetection code inside every test project, we’ll have it in the Corefx.Private.TestUtilities. I have refactored the PlatformDetection to split the different implementation of Windows and Linux. If we need to do more refactoring there we can do it later as needed. * Fix Linux BB * Update the xunit package reference * Fix wrong condition on one of the tests * Update the ConditionalFact/Theory to use Type as a parameter
2017-08-11Replace Elevated Tests (#23117)Maggie Tsang
* Conditional elevated statements * Change to elevated helper
2017-08-03Address PR feedbackStephen Toub
2017-08-03Dump remote exceptiondanmosemsft
2017-08-03Elevation Helpers (#22836)Maggie Tsang
* Elevation Helpers Detects if user is running as elevated. * Fix unsafe blocks.
2017-07-19Tweak path related tests (#22407)Jeremy Kuhne
* Tweak whitespace related tests Needed to update a few tests for unix whitespace behavior. * Fix more test issues Also add another assert extension for three exceptions.
2017-07-18Converted sudo commands to class helper (#22349)Maggie Tsang
2017-07-18Created admin helper file (#22046)Maggie Tsang
2017-07-11Revert "Have the uap version of RemoteExecutorTestBase.RemoteInvoke wait in ↵Santiago Fernandez Madero
a… (#21780)" (#22069) This reverts commit 066ad32f1352fe5325998b997b93a0e0cb54cf58.
2017-07-10Have the uap version of RemoteExecutorTestBase.RemoteInvoke wait in a… ↵Koundinya Veluri
(#21780) * Have the uap version of RemoteExecutorTestBase.RemoteInvoke wait in a background thread Fixes #21275 * Fix build * Address feedback * Fix build * Fix test * Fix test * Fix something
2017-07-06Convert Tests to Theoryt-nichik
Converting tests from Fact to Theory to make it easier to recognize which tests are failing instead of spending time sorting through ambiguous test output.
2017-07-03Move AssertExtensions to Corefx.Private.TestUtilities (#21799)Hugh Bellamy
* Move AssertExtensions to Corefx.Private.TestUtilities * Update csprojs * Fix Linq.Expressions uapaot build
2017-06-30Re-enable one System.Runtime.Extensions Evironment_Exit test and fix it for ↵Santiago Fernandez Madero
UAP (#21758) * Re-enable one System.Runtime.Extensions Evironment_Exit test and fix it for UAP
2017-06-29Add converter from IEnumerable to TheoryData (#21671)Jeremy Kuhne
* Add converter from IEnumerable to TheoryData Manipulating test input data in IEnumerable format is desirable, but a bit awkward to get into IEnumerable<object[]> format that [Theory] expects. Add test project to new test project. :) Change a test in System.IO.FileSystem to theory with new extension. * Fix performance test project * Run the UpdateConfigurations target * Add netfx reference
2017-06-28Correctly handle empty strings in params of RemoteExecutorTestBase (#21196)Hugh Bellamy
* Implement argument pasting in RemoteInvoke * Add tests for RemoteInvoke fixes * Update RemoteInvoke tests now that quoting is unecessary * Fix netfx tests The extra parameter is empty in netfx so was pasted to "" * Address PR feedback
2017-06-20Add Corefx.Private.Test.Utilities solution (#21254)Hugh Bellamy
* Add CoreFx.Private.TestUtilities solution file * Update VS configurations across corefx
2017-06-15Disable official build signing on the test library (#21065)Tarek Mahmoud Sayed
2017-06-14Enable UAP Remote Execution for all tests (#21014)Tarek Mahmoud Sayed
This change to enable remote execution of all corefx tests in UAP. Because the remote execution code for UAP is using WinRT APIs and to avoid forcing adding UAP configuration to all test projects, we factor the remote execution code into its own test library (called TestHelper) which is cross compiled.