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-14Fix typos in comments (#23198)John Doe
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-09Fix plain zero insertion error when SqlBulkCopy (#22926)Gene Lee
2017-08-04Adding few libraries to UWP MetapackageJose Perez Rodriguez
2017-08-02Removed SNIMarsManager, and modified TdsParserStateObjectManaged so that it ↵Cory Rivera
manages its own SNIMarsConnection if MARS is enabled. This prevents SNIMarsConnections from accumulating forever in a static SNIMarsManager singleton. (#22709)
2017-08-02Remove ILCBuildType=chk from SqlClient.Tests (#22835)Santiago Fernandez Madero
2017-07-29Adding unexposed method to public contract (#22617)Gene Lee
2017-07-29Force connection pooling in SqlClient manual tests that rely on connection ↵Cory Rivera
pooling. (#22710)
2017-07-27Fix SqlClient UapAot test failures caused by blocked reflection of internal ↵Cory Rivera
types (#22618) * Remove resource string retrieval in uapaot SqlClient Manual Tests, since reflection of internal members like the error strings is blocked on uapaot. * Disable SqlClient diagnostic tests on UapAot, since they use reflection on internal types which is blocked on uapaot. * Replace error message uapaot #ifs in Manual Tests with a single #if in the actual resource retrieval method in AssemblyResourceManager. * Remove unnecessary spaces left over from previous commits. * Replace a uapaot #if with a PlatformDetection.IsNative check
2017-07-26Add helper function for retrieving SniContext enum names, since SniContext ↵Cory Rivera
is an internal enum and its name cannot be retrieved via reflection on uapaot. (#22579) * Add helper function for retrieving SniContext enum names, since SniContext is an internal enum and its name cannot be retrieved via reflection on uapaot. * Fixed an incorrect return value in GetSniContextEnumName, and fixed a typo in an SniContext enum name.
2017-07-25Move LocalDBNotSupportedOnUapTest to Functional tests, since it does not ↵Cory Rivera
require a test server. (#22580)
2017-07-25Adding SqlConnectionStringBuilder.Enlist to public method contract (#22566)Gene Lee
2017-07-22Remove reflection from uap test (#22521)Dan Moseley
2017-07-22Update UAP pinvoke baselines (#22516)Paulo Janotti
* readding 1 API and updating buildtools * removing more APIs that were added
2017-07-22Throw a PlatformNotSupported exception when trying to connect to LocalDB ↵Cory Rivera
with SqlClient on UAP, since UAP does not have the registry functionality needed for LocalDB connectivity. (#22489) * Throw a PlatformNotSupported exception when trying to connect to LocalDB with SqlClient on UAP, since UAP does not have the registry functionality needed for LocalDB connectivity. * Modify LocalDBTest test skipping so that including PlatformDetection is not required. * Fix capitalization in LocalDBNotSupported error message.
2017-07-20Re-enable IntegratedAuthConnectionTest, since the failures no longer repro ↵Cory Rivera
on the latest uapaot test runs. (#22455)
2017-07-19Force System.Data.SqlClient.Tests to be built in chk mode for UapAot (#22419)Santiago Fernandez Madero
2017-07-19Adding error message for inaccessible SQL Server Browser (#22400)Gene Lee
2017-07-17Mark several System.Data types with 'partial' keyword (#22327)Egor Bogatov
* Mark several System.Data types with 'partial' keyword * mark SqlMetaData, SqlClientFactory and SqlConnectionStringBuilder with 'partial' keyword
2017-07-14Transaction code porting from Framwork for TransactionScope / ↵Gene Lee
TransactionBinding support (#22059)
2017-07-13Skip NonAzureNoProtocolConnectionTest on UAP, since the UseManagedSNI flag ↵Cory Rivera
it uses cannot be checked via reflection on UAP (#22188)
2017-07-13Fix SNI version issues in Named Pipes tests in SqlClient functional tests ↵Cory Rivera
(#22108) * Fix SNI version issues in Named Pipes tests in SqlClient functional tests * Change SqlClient named pipe timeout error message to match tcp behavior
2017-07-11Making UAP SqlClient sni.dll independent (#21997)Saurabh Singh
* Make SqlClient sni.dll independent * Add PNSE for localdb messages
2017-07-04Merge pull request #21836 from joperezr/uapvnextJose Perez Rodriguez
Renaming uap10.1 to uap10.0.15138
2017-07-04Renaming uap10.1 to uap10.0.15138Jose Perez Rodriguez
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-28Convert Assert.Throws<ArgumentException> to AssertExtensions (#21491)Hugh Bellamy
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-28Fix the three System.Data.SqlClient tests that were failing on arm due to ↵Jose Perez Rodriguez
sni.dll not being available on arm (#21637) * Fix the three System.Data.SqlClient tests that were failing on arm due to sni.dll not being available on arm * PR Feedback
2017-06-24Qualify table types with schema name (#21485)Saurabh Singh
2017-06-24Make Named Pipe test Windows Specific (#21480)Saurabh Singh
2017-06-23Convert most Assert.Throws<ArgumentException> without param name to ↵Hugh Bellamy
AssertExtensions (#21455) * Registry * Collections * ComponentModel * Configuration * Data * Globalization * Drawing * Diagnostics * IO * Linq * Add System.Net param names in tests * Move ArgumentExceptions in System.Private.Xml to AssertExtensions * Add System.Reflection.* ArgumentException param names * Add param names for System.Runtime* ArgumentExceptions * Add ArgumentException param names to System.Security.* * Add ArgumentException param names to System.Text.* * Add param names to ArgumentExceptions in misc projects * Add System.Threading.* ArgumentException param names * Fix missing files * Fixes for unix and netfx * Fix more failures and revert a IdnaConformance tests to avoid merge conflicts with #21463
2017-06-18Fixup instances of [ThreadStatic] in test codeHugh Bellamy
2017-06-18Fixup instances of [ThreadStatic] naming in product codeHugh Bellamy
2017-06-16Make several System.Data classes partial, remove ReadOnlyCollection.cs (#21132)Egor Bogatov
2017-06-15[System.Data] Move methods TraceExceptionWithoutRethrow and ↵Egor Bogatov
NotSupportedEnumerationValue to common (#21061)
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.
2017-06-12Move DbConnectionOptions.cs to Common (#19808)Egor Bogatov
* Move DbConnectionOptions.cs to Common * Move SR from AdapterUtil.SqlClient.cs to SR.cs (it forced mono to have SR inside System namespace) * Make SNILoadHandle and TdsParserStateObjectFactory 'partial' * [System.Data] move IsEmptyArray and CompareInsensitiveInvariant to @(CommonPath)/AdapterUtil.cs (remove duplicates) * [System.Data] fix build (remove duplicates from AdapterUtil.Odbc.cs - they are already defined in the common AdapterUtil.cs) * Remove 'partial' from TdsParserStateObjectFactory.Windows.cs
2017-06-12Add SqlCommandBuilder to SqlClient (#20883)Cory Rivera
2017-06-09Enable UWP build for SqlClient (#20786)Saurabh Singh
* Enable UWP targets * Allow managed SNI on UWP * Remove redundant checks * Fix packaging issue by binplacing the netstandard ref as uap
2017-06-09Add socket connectivity test in the Test TDS server (#20829)Saurabh Singh
adding connectivity check for socket when the server comes up
2017-06-08Adding logs around TdsServer startup (#20789)Saurabh Singh
* Adding logs around the server startup and connection close. Moved Logging configiuration * Adding the name property to log in the server connection logs
2017-06-08Improve test table cleanup in SqlClient ManualTests (#20790)Cory Rivera
2017-06-07Add query notification support to SqlClient (#20708)Cory Rivera
2017-06-06ActiveIssue a few more tests on ILC that are blocking ZBB. (#20720)Atsushi Kanamori
2017-06-05Update buildtools (#20651)Matt Ellis
This brings in the new version of buildtools that publishes the tool-runtime as a portable application instead of standalone. The source file changes are to remove some non unicode characters in files that were tripping Roslyn up.
2017-06-01Poring SqlSchemaInfoTest into .NET Core (#20513)Gene Lee
2017-05-27Fixing System.Data.SqlClient.ManualTesting tests and ↵Jose Perez Rodriguez
System.Data.SqlClient.Stress tests for uapaot (#20330) * Fixing System.Data.SqlClient.ManualTesting tests and System.Data.SqlClient.Stress tests for uapaot * Fixing System.Data.SqlClient.Tests running on uapaot * Setting Charset.Unicode for Pinvokes with EntryPoint defined
2017-05-27Add AdapterTest to SqlClient ManualTests (#20269)Cory Rivera
2017-05-26Add SqlDataRecordSet tests (#20367)Saurabh Singh
* Adding SqlDataRecordTest * Fix formatting