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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-01-28[bcl] Update tests that failed when .cs file contained CRLFAlexander Köplinger
Most of them used multiline C# string literals which means they contained the line ending character of the file. Updated to make the tests resilient to having CRLF instead of LF. Some of the mcs tests used a checksum to compare files, ensured those are checked out using LF.
2017-01-20[bcl] Rename FEATURE_MONO_CAS to MONO_FEATURE_CASAlexander Köplinger
To be consistent with the other MONO_FEATURE_* defines.
2017-01-11Mono BCL test fixes so XM can run them (#4210)Chris Hamons
2016-12-22[System.Xml] Disable more failing tests on old xslt implementationMarek Safar
2016-12-22[System.Xml] Disable failing tests on old xslt implementationMarek Safar
2016-12-20[System.Xml] Add support for msxsl format functions. Fixes #50242Marek Safar
2016-12-20[System.Xml] Enable more testsMarek Safar
2016-11-10[system.xml] Enable more testsMarek Safar
2016-10-29[System.Xml/System.ServiceModel/Dataflow] Use more specific type in assertAlexander Köplinger
Apparently nunitlite is more strict here so we need to allow subclasses as well and test for the more specific type.
2016-10-29[System.Xml] Fix embedded assembly name in XmlCodeExporterTestsAlexander Köplinger
nunitlite doesn't run the test in a separate AppDomain so we get the name of the console host.
2016-10-14[System.Xml] Update supported time formats for mobile version of XML ↵Marek Safar
deserializer. Fixes #42843
2016-10-14[System.Xml] Enable more testsMarek Safar
2016-09-20Fixes line ending issue in ↵Niklas Therning
XmlReflectionImporterTests.Bug594490_SerializationOfXmlLangAttribute This test is sensitive to the line ending mode used by git. When LF is used by git (which is what Cygwin's git defaults to) this test fails on Windows since CRLF will be used as line ending in the serialized XML. This patch changes the test to use Environment.NewLine explicitly in the expected string.
2016-08-23[mcs] Remove NET_4_5 ifdef from the source filesAlexander Köplinger
It is always set in all profiles that we support so we can remove it.
2016-08-09[bcl] Update Reference Source to .NET Framework 4.6.2Marek Safar
2016-06-16[bcl] Make mono cas opt-in features instead of opt-out for mobile profilesMarek Safar
2016-01-29Remove ChangeLog files from the repoAlexander Köplinger
They weren't updated in the last 6 years and aren't helpful anymore (e.g. by causing unrelated matches during git grep searches).
2016-01-11[System.Xml] Test sub class serialization on listsMarcos Henrich
Covers #36829
2015-12-11Fix endless recursion in XmlCompiledTransform on mobileMarek Habersack
One of the XmlCompiledTransform overloads called itself recursively, leading to either a stack overflow or segfault Fixes https://bugzilla.xamarin.com/show_bug.cgi?id=36436
2015-07-25[build] Fix a few Makefiles to correctly use net_4_x instead of net_4_5Alexander Köplinger
2015-05-22[system.xml] Check different results under disabled casMarek Safar
2015-05-20[system.xml] One more mobile serialization incompatibilityMarek Safar
2015-05-20[bcl] Mobile profiles fixesMarek Safar
2015-05-13[system.xml] Serialization from reference sources for desktopMarek Safar
2015-05-12Revert "[system.xml] Serialization from reference sources for desktop"Atsushi Eno
This reverts commit 6ae517ea65af8cf7585c3a080caaa53d05447cc1.
2015-05-11[system.xml] Serialization from reference sources for desktopMarek Safar
2015-05-06[bcl] Mobile profiles fixesMarek Safar
2015-04-16[system.xml] Update failing testMarek Safar
2015-04-02Fix XmlSerializationTest again.Dave Curylo
2015-04-02Corrects error in XmlSerializerTests.Dave Curylo
2015-04-02XmlSerializer should set *non* readonly {V}Specified fieldsDave Curylo
Addresses an oversight in PR 1257 that caused {V}Specified fields to not be set during XML deserialization in some circumstances. Adds test for optional value serialization round trip
2015-03-25[corlib] String from reference sources, fixes mostly string.format issuesMarek Safar
2015-03-17[xml] add test from bug #2917.Atsushi Eno
2015-03-10Fix the build broken in 40ba1978bc274c820141fab18177e2bb17efd3b4Alexander Köplinger
2015-03-04Fix for the XMLSerializer bug 18558jason_naylor
* Find the type map element that is the most-specific to the object in question, not the first type it is an instance of Change-Id: I1867e790bf9f377ce0ae02871f4561b760e27624
2015-03-04Test to reveal defect in XmlSerializer (Bug 18558)jason_naylor
Given the test data in this patch the wrong element name is used when serializing TestSerializeSecondType Change-Id: I8aff732dfd22f4f654fb42f2d3b987d7ce58d600
2015-03-03Rename Managed.Windows.Forms to System.Windows.Forms for consistency.Zoltan Varga
2015-03-02[Xml] add mobile XslCompiledTransform implementation.Atsushi Eno
XslCompiledTransform doesn't work without CodeDom and dynamic code generation. This "implementation" just dispatches everything to XslTransform.
2015-03-02[Sys.Xml] swap xmlns:xsd and xmlns:xsi in serialized xml to remove "regression".Atsushi Eno
The order of those namespaces are insignificant, and the latest combination of mono corlib (partly referencesource-d) and sys.xml (referencesource except for XmlSerializer) caused this implementation glitch.
2015-03-02First step to import referencesource System.Xml.Atsushi Eno
It is not simply replacement because we have to workaround dynamic codegen for Xamarin.iOS. Also there were several tests failing with MS implementation (e.g. for W3C DOM conformance), so we had to disable them. There is one regression that rather needs to be fixed in Reflection.Emit. Also, some WCF tests fail with this implementation. They need to be investigated, reviewed and appropriately fixed.
2015-02-05Merge pull request #1541 from alexrp/mcs-build-cleanupAlex Rønne Petersen
Clean up mcs build system
2015-02-04[system.xml] Disable failing test, requires reference source implementationMarek Safar
2015-02-03Remove obsolete profiles and profile checks from the build system.Alex Rønne Petersen
* Removed all old profiles from VALID_PROFILE checks. * Removed most logic under checks like ifeq (net_2_0), $(PROFILE)) as it is dead code now that those old profiles are gone. * Simplified the list of assemblies in mcs/class/Makefile now that we only have one profile. * LIBRARY_NEEDS_POSTPROCESSING has been removed as it was only used by old 1.x assemblies that no longer exist. * Build logic that sets MONO_PATH now points to mcs/class/lib/net_4_5 instead of mcs/class/lib/net_2_0.
2015-02-03Remove some leftover old 1.x, 2.x, 3.x profile ifdefs.Alex Rønne Petersen
We no longer support these profiles so these code paths are dead.
2015-01-27Unit test for reproduction of XmlReader.ReadToNextSibling behaviourAlistair Bush
2015-01-21[bcl] Remove ONLY_1_1 defines from class libsAlexander Köplinger
This is not used anymore.
2015-01-17[bcl] Remove more NET_2_0 checks from class libsAlexander Köplinger
2014-10-31[xml] XmlDocument.ReadNode() should not special case XmlTextReader.Atsushi Eno
Added test case that proves this change (by baulig).
2014-10-24[xml] XmlTextReader: Value was wrong after ReadAttributeValue() on xml ↵Atsushi Eno
declaration.
2014-09-26Test Xml serialization of a property with attribute XmlText.Marcos Henrich
The tested property has a default value that is not null. Covers 18908.