You've already forked linux-packaging-mono
Imported Upstream version 4.6.0.125
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
This commit is contained in:
parent
a569aebcfd
commit
e79aa3c0ed
@@ -63,12 +63,9 @@ using System.Runtime.InteropServices;
|
||||
|
||||
#if NET_2_1
|
||||
[assembly: InternalsVisibleTo ("System.ServiceModel.Web, PublicKey=00240000048000009400000006020000002400005253413100040000010001008D56C76F9E8649383049F383C44BE0EC204181822A6C31CF5EB7EF486944D032188EA1D3920763712CCB12D75FB77E9811149E6148E5D32FBAAB37611C1878DDC19E20EF135D0CB2CFF2BFEC3D115810C3D9069638FE4BE215DBF795861920E5AB6F7DB2E2CEEF136AC23D5DD2BF031700AEC232F6C6B1C785B4305C123B37AB")]
|
||||
// System.Xml.Serialization (from Microsoft Silverlight 2.0 SDK) requires access to System.Xml internals
|
||||
[assembly: InternalsVisibleTo ("System.Xml.Serialization, PublicKey=" + AssemblyRef.FrameworkPublicKeyFull)]
|
||||
#else
|
||||
[assembly: AllowPartiallyTrustedCallers]
|
||||
#endif
|
||||
[assembly: InternalsVisibleTo ("System.Runtime.Serialization, PublicKey=" + AssemblyRef.FrameworkPublicKeyFull, AllInternalsVisible = false)]
|
||||
[assembly: InternalsVisibleTo ("System.Xml.Linq, PublicKey=" + AssemblyRef.FrameworkPublicKeyFull, AllInternalsVisible = false)]
|
||||
|
||||
[assembly: AssemblyFileVersion (Consts.FxFileVersion)]
|
||||
|
||||
@@ -1,44 +0,0 @@
|
||||
2009-04-22 Sebastien Pouliot <sebastien@ximian.com>
|
||||
|
||||
* AssemblyInfo.cs: Open internals to System.ServiceModel.Web
|
||||
|
||||
2009-04-21 Sebastien Pouliot <sebastien@ximian.com>
|
||||
|
||||
* AssemblyInfo.cs: Open internals to System.Runtime.Serialization
|
||||
since it needs some stuff from XmlSchema
|
||||
|
||||
2009-04-06 Sebastien Pouliot <sebastien@ximian.com>
|
||||
|
||||
* AssemblyInfo.cs: Remove AllowPartiallyTrustedCallers from NET_2_1
|
||||
build (not in SL2) and open our internals to System.Xml.Serialization
|
||||
(only in NET_2_1) since MS SL2 SDK requires it. Test case @
|
||||
http://demos.devexpress.com/AgDataGridDemos/
|
||||
|
||||
2008-04-23 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
|
||||
|
||||
* AssemblyInfo.cs: Added missing attributes
|
||||
|
||||
2007-02-07 Gert Driesen <drieseng@users.sourceforge.net>
|
||||
|
||||
* AssemblyInfo.cs: Define AssemblyFileVersion on 2.0 profile.
|
||||
|
||||
2005-11-14 Andrew Skiba <andrews@mainsoft.com>
|
||||
|
||||
* AssemblyInfo.cs: ifdef attributes not supported by GrassHopper
|
||||
|
||||
2004-11-04 Raja R Harinath <rharinath@novell.com>
|
||||
|
||||
* AssemblyInfo.cs [BOOTSTRAP_NET_2_0]: Set version to 2.0.3600.0.
|
||||
|
||||
2003-10-13 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
|
||||
|
||||
* AssemblyInfo.cs : Now it became CLSCompliant.
|
||||
|
||||
2003-08-11 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
|
||||
|
||||
* Locale.cs: Added
|
||||
|
||||
2003-07-14 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
|
||||
|
||||
* AssemblyInfo.cs: Added
|
||||
* ChangeLog: Added
|
||||
File diff suppressed because it is too large
Load Diff
@@ -13,43 +13,42 @@ ifdef USE_BOOT_COMPILE
|
||||
LIBRARY_COMPILE = $(BOOT_COMPILE)
|
||||
endif
|
||||
|
||||
RESOURCE_STRINGS = \
|
||||
../../../external/referencesource/System.Xml/System.Xml.txt \
|
||||
../../../external/referencesource/System.Data.SqlXml/System.Xml.Utils.txt
|
||||
TXT_RESOURCE_STRINGS = \
|
||||
../referencesource/System.Xml/System.Xml.txt \
|
||||
../referencesource/System.Data.SqlXml/System.Xml.Utils.txt
|
||||
|
||||
LIB_REFS = System
|
||||
LIB_MCS_FLAGS = -r:$(corlib) -nowarn:219,414,649,1717 -unsafe -d:ASYNC
|
||||
LIB_MCS_FLAGS = -nowarn:219,414,649,1717 -unsafe -d:ASYNC
|
||||
|
||||
ifeq (2.1, $(FRAMEWORK_VERSION))
|
||||
LIB_MCS_FLAGS += -d:AGCLR -d:NET_2_1_HACK -d:DISABLE_XSLT_COMPILER -d:DISABLE_XSLT_SCRIPT,MONO_HYBRID_SYSTEM_XML -d:DISABLE_CAS_USE
|
||||
endif
|
||||
TEST_MCS_FLAGS = $(LIB_MCS_FLAGS) -nowarn:0618 -nowarn:219 -nowarn:169 -r:System.Data.dll -r:System.Core.dll
|
||||
|
||||
ifndef MOBILE_PROFILE
|
||||
FINAL_MCS_FLAGS = -r:System.Configuration.dll -d:CONFIGURATION_DEP
|
||||
endif
|
||||
TEST_LIB_REFS = System.Data System.Core
|
||||
TEST_MCS_FLAGS = $(LIB_MCS_FLAGS) -nowarn:0618 -nowarn:219 -nowarn:169
|
||||
|
||||
ifneq (bare/,$(intermediate))
|
||||
LIB_MCS_FLAGS += $(FINAL_MCS_FLAGS)
|
||||
LIB_REFS += secxml/System
|
||||
ifndef MOBILE_PROFILE
|
||||
LIB_REFS += System.Configuration
|
||||
LIB_MCS_FLAGS += -d:CONFIGURATION_DEP
|
||||
endif
|
||||
else
|
||||
LIB_REFS += $(intermediate)System
|
||||
endif
|
||||
|
||||
LOCAL_MCS_FLAGS += -lib:$(bare_libdir)
|
||||
|
||||
nist_dom_files = \
|
||||
ChangeLog ITest.cs readme.txt util.cs \
|
||||
fundamental/ChangeLog \
|
||||
files/ChangeLog files/noDTDXMLfile.xml files/otherDoc.xml files/staff.dtd files/staff.html files/staff.xml
|
||||
ITest.cs readme.txt util.cs \
|
||||
files/noDTDXMLfile.xml files/otherDoc.xml files/staff.dtd files/staff.html files/staff.xml
|
||||
|
||||
xmlfiles_files = \
|
||||
ChangeLog nested-included.dtd literal-data.xml nested-dtd-test.dtd nested-dtd-test.xml simple.xml \
|
||||
xsl/ChangeLog xsl/empty.xsl \
|
||||
XsdValidation/ChangeLog XsdValidation/1.xsd XsdValidation/2.xsd XsdValidation/3.xsd XsdValidation/4.xsd \
|
||||
xsd/ChangeLog xsd/1.xsd xsd/2.xsd xsd/3.xsd xsd/4.xsd xsd/5.xsd xsd/6.xsd xsd/xml.xsd xsd/81360.xsd xsd/81360inc1.xsd xsd/81360inc2.xsd
|
||||
nested-included.dtd literal-data.xml nested-dtd-test.dtd nested-dtd-test.xml simple.xml \
|
||||
xsl/empty.xsl \
|
||||
XsdValidation/1.xsd XsdValidation/2.xsd XsdValidation/3.xsd XsdValidation/4.xsd \
|
||||
xsd/1.xsd xsd/2.xsd xsd/3.xsd xsd/4.xsd xsd/5.xsd xsd/6.xsd xsd/xml.xsd xsd/81360.xsd xsd/81360inc1.xsd xsd/81360inc2.xsd
|
||||
|
||||
EXTRA_DISTFILES = \
|
||||
$(wildcard System.Xml.Serialization/standalone_tests/*.cs) \
|
||||
$(wildcard System.Xml.Serialization/standalone_tests/*.output) \
|
||||
Test/ChangeLog \
|
||||
Test/Microsoft.Test.csproj \
|
||||
Test/Mono.Test.csproj \
|
||||
Test/MonoMicro.Test.csproj \
|
||||
@@ -62,7 +61,6 @@ EXTRA_DISTFILES = \
|
||||
$(wildcard Test/XmlFiles/xsl/*.xml) \
|
||||
$(wildcard Test/XmlFiles/xsl/*.xsl) \
|
||||
Test/XmlFiles/xsl/current-in-select.ref \
|
||||
Test/XmlFiles/xsl/ChangeLog \
|
||||
$(xmlfiles_files:%=Test/XmlFiles/%) \
|
||||
$(nist_dom_files:%=Test/System.Xml/nist_dom/%)
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1 @@
|
||||
bff0ce4cdbbe7b70666f9e6376f7ab203bcc2aaa
|
||||
@@ -1 +0,0 @@
|
||||
6300882155a6a2ba38e14b5e3aaf03f751473d41
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,285 +0,0 @@
|
||||
2010-03-15 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XmlSchemaValidatorTests.cs : added test for bug #584664.
|
||||
|
||||
2010-01-27 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XmlSchemaValidatorTests.cs : added test for bug #557452, by
|
||||
Luke Ravitch.
|
||||
|
||||
2010-01-26 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XmlSchemaValidatorTests.cs : added test for bug #502251, by
|
||||
Jonas Larsson.
|
||||
|
||||
2010-01-26 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XmlSchemaSetTests.cs : added test for bug #571650.
|
||||
|
||||
2009-07-09 Gert Driesen <drieseng@users.sourceforge.net>
|
||||
|
||||
* XmlSchemaTests.cs: Fixed tests for bug #502115.
|
||||
|
||||
2009-07-09 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XmlSchemaTests.cs : disabled wrong tests. I will revert them
|
||||
unless it gets better shape.
|
||||
|
||||
2009-06-23 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XmlSchemaAssertion.cs, XmlSchemaTests.cs : migrate from Assertion
|
||||
to Assert (it still uses XmlSchemaAssertion as the base class,
|
||||
but XmlSchemaAssertion is not based on Assertion anymore).
|
||||
|
||||
2009-05-21 Gert Driesen <drieseng@users.sourceforge.net>
|
||||
|
||||
* XmlSchemaTests.cs: added tests for bug #502115.
|
||||
|
||||
2009-05-07 Jonas Larsson <jonas.larsson@manodo.se>
|
||||
|
||||
* XmlSchemaValidatorTests.cs : added test for bug #501666.
|
||||
|
||||
2009-04-22 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XmlSchemaValidatorTests.cs : added test for bug #496192 and #496205.
|
||||
|
||||
2009-01-30 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XmlSchemaValidatorTests.cs : added test for bug #469713.
|
||||
|
||||
2008-12-15 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XmlSchemaSetTests.cs : added test for Compile() after "duplicating"
|
||||
call to Add() for such schemas that also have xs:import of the
|
||||
same schema that causes errors on processing substitutionGroup.
|
||||
|
||||
2008-10-28 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XmlSchemaValidatorTests.cs : added test for bug #435206.
|
||||
|
||||
2008-10-28 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XmlSchemaValidatorTests.cs : added test for bug #433774.
|
||||
|
||||
2008-09-09 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XmlSchemaValidatorTests.cs : added test for bug #422581.
|
||||
|
||||
2008-06-06 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XmlSchemaTests.cs : fix file path.
|
||||
|
||||
2008-06-06 James Fitzsimons <james.fitzsimons@gmail.com>
|
||||
|
||||
* XmlSchemaTests.cs: added test for bug #397612.
|
||||
* XmlSchemaAssertion.cs : make sure to close schema XmlReader.
|
||||
|
||||
2008-06-06 James Fitzsimons <james.fitzsimons@gmail.com>
|
||||
|
||||
* XmlSchemaTests.cs: added test to support change to
|
||||
GetResolvedUri to return Uri in correct case
|
||||
to make compatible with the Microsoft.NET framework.
|
||||
|
||||
2008-02-19 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XmlSchemaTests.cs: added test for bug #361818.
|
||||
|
||||
2008-02-04 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XmlSchemaValidatorTests.cs : new. Test for bug #358408.
|
||||
|
||||
2006-08-04 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XmlSchemaTest.cs : added bug #78985 case.
|
||||
|
||||
2006-07-27 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XmlSchemaSetTest.cs : added bug #77489 case.
|
||||
* XmlSchemaCollectionTests.cs : removed NotWorking from #77820 case.
|
||||
|
||||
2006-07-27 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XmlSchemaSetTests.cs : added AddWrongTargetNamespace().
|
||||
|
||||
2006-07-25 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XmlSchemaTests.cs : added TestSimpleMutualImport().
|
||||
|
||||
2006-04-27 Gert Driesen <drieseng@users.sourceforge.net>
|
||||
|
||||
* XmlSchemaCollectionTests.cs: added test for bug #78220.
|
||||
|
||||
2006-03-02 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XmlSchemaTests.cs : added test for bug #77687.
|
||||
|
||||
2006-03-01 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XmlSchemaTests.cs : added test for bug #77685.
|
||||
|
||||
2006-02-28 Gert Driesen <drieseng@users.sourceforge.net>
|
||||
|
||||
* XmlSchemaAssertion.cs: Set eol-style to native.
|
||||
* XmlSchemaBuiltInDatatypeTests.cs: Set eol-style to CRLF.
|
||||
* XmlSchemaCollectionTests.cs: Set eol-style to native. Fixed line
|
||||
endings.
|
||||
* XmlSchemaDatatypeTests.cs: Set eol-style to native.
|
||||
* XmlSchemaExceptionCas.cs: Set eol-style to native.
|
||||
* XmlSchemaLengthFacetTests.cs: Set eol-style to CRLF.
|
||||
* XmlSchemaSetTests.cs: Set eol-style to native.
|
||||
* XmlSchemaTests.cs: Set eol-style to native.
|
||||
* XmlSchemaTypeTests.cs: Set eol-style to native.>
|
||||
|
||||
2006-02-28 Gert Driesen <drieseng@users.sourceforge.net>
|
||||
|
||||
* XmlSchemaTests.cs: Added test for writing XmlSchema with
|
||||
zero-length TargetNamespace. Added test for compiling XmlSchema
|
||||
with zero-length TargetNamespace. Replaced Console.WriteLine with
|
||||
AssertEquals.
|
||||
|
||||
2006-02-06 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XmlSchemaDatatypeTests.cs: (TestAnyType) NotDotNet -> Ignore.
|
||||
|
||||
2006-02-06 Gert Driesen <drieseng@users.sourceforge.net>
|
||||
|
||||
* XmlSchemaDatatypeTests.cs: Marked TestAnyType NotDotNet on 2.0
|
||||
profile instead of marking it NotWorking. No longer derive from
|
||||
Assertion.
|
||||
|
||||
2006-02-01 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XmlSchemaDatatypeTests.cs : added two more anyURI tests.
|
||||
|
||||
2006-01-10 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XmlSchemaTypeTests.cs : new file. Test for TypeCode.
|
||||
* XmlSchemaSetTests.cs : added more tests for Add() and marked one as
|
||||
NotWorking (we need info on how consistent this method is).
|
||||
|
||||
2006-01-10 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XmlSchemaDatatypeTests.cs : oops sys.col.generic is NET_2_0.
|
||||
|
||||
2006-01-10 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XmlSchemaDatatypeTests.cs : added test for 2.0 IsDerivedFrom().
|
||||
|
||||
2006-01-06 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XmlSchemaSetTests.cs : added AddRollbackIsCompiled(); Add() changes
|
||||
IsCompiled to false.
|
||||
|
||||
2006-01-06 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XmlSchemaSetTests.cs : reverted the patch, thus restore [Ignore].
|
||||
|
||||
2006-01-06 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XmlSchemaSetTests.cs : re-enabled test for Add() which was
|
||||
inconsistent in beta versions.
|
||||
|
||||
2005-12-08 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XmlSchemaSetTests.cs : added set_CompilationSettings tests.
|
||||
|
||||
2005-12-08 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XmlSchemaSetTests.cs : added CompilationSettings tests.
|
||||
|
||||
2005-12-01 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XmlSchemaTests.cs :
|
||||
Additional schema component to finish #76865 test.
|
||||
|
||||
2005-12-01 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XmlSchemaTests.cs : added testcase for #76865.
|
||||
|
||||
2005-10-23 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XmlSchemaTests.cs : some namespace output strategy seems changed
|
||||
in .NET 2.0 and they still make sense, so just mark them as
|
||||
NotDotNet and NotWorking under 2.0.
|
||||
|
||||
2005-09-30 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XmlSchemaTests.cs : test for reader position after Read().
|
||||
|
||||
2005-08-31 Sebastien Pouliot <sebastien@ximian.com>
|
||||
|
||||
* XmlSchemaExceptionCas.cs: New. CAS unit tests for exception
|
||||
serialization.
|
||||
|
||||
2005-06-11 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XmlSchemaCollectionTests.cs : added test for #75126.
|
||||
|
||||
2005-02-28 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XmlSchemaTests.cs : just set NotWorking for trivial comparison tests.
|
||||
|
||||
2005-01-30 Nick Drochak <ndrochak@ieee.org>
|
||||
|
||||
* XmlSchemaTests.cs: Use less strict test. Probably the order of the
|
||||
namespaces is not required to be in any particular order.
|
||||
|
||||
2004-01-11 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XmlSchemaTests.cs : added TestWriteNamespaces2 ().
|
||||
|
||||
2004-09-13 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XmlSchemaSetTests.cs : added.
|
||||
|
||||
2004-05-24 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XmlSchemaBuiltInDataypeTests.cs : 'Z' is not allowed here (maybe it
|
||||
is 'T' that was wanted). More kind error message in Fail().
|
||||
|
||||
2004-05-05 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XmlSchemaTests.cs : Added TestWriteNamespaces().
|
||||
|
||||
2004-03-31 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* Added XmlSchemaAssertion.cs.
|
||||
* XmlSchemaTests.cs : now uses XmlSchemaAssertion.
|
||||
|
||||
2004-01-03 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XmlSchemaTests.cs : fixed file path. Added more tests.
|
||||
* added XmlSchemaCollectionTests.cs and XmlSchemaDatatypeTests.cs (the
|
||||
latter one's purpose overlaps with XmlSchemaBuiltInDatatypeTests ;)
|
||||
|
||||
2003-12-17 David Sheldon <dave-mono@earth.li>
|
||||
|
||||
* Added XmlSchemaBuiltInDatatypeTests.cs : Currently fails due to
|
||||
bug 52274.
|
||||
|
||||
2003-12-14 David Sheldon <dave-mono@earth.li>
|
||||
|
||||
* XmlSchemaLengthFacetTests.cs : Tests for non-integers failing
|
||||
as length facets, and changed the assert for the correct type.
|
||||
|
||||
2003-12-08 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
|
||||
|
||||
* Added XmlSchemaLengthFacetTests.cs. (patch by David Sheldon.)
|
||||
|
||||
2003-07-21 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
|
||||
|
||||
* XmlSchemaTests.cs : added sequence and particle tests to TestCompile()
|
||||
|
||||
2003-07-20 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
|
||||
|
||||
* XmlSchemaTests.cs : added AssertComplexTypeContentExtension() and
|
||||
added related tests in TestCompile().
|
||||
|
||||
2003-07-19 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
|
||||
|
||||
* XmlSchemaTests.cs : rewrote TestRead() and added TestCompile().
|
||||
|
||||
2003-04-12 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
|
||||
|
||||
* added this file as a new entry.
|
||||
See ../ChangeLog to find former ChangeLog entries.
|
||||
@@ -1,4 +0,0 @@
|
||||
2006-11-01 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* SchemaImporterExtensionCollectionTests.cs,
|
||||
SchemaImporterExtensionTests.cs : new testfixtures.
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,249 +0,0 @@
|
||||
2009-11-17 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XPathEditableNavigatorTests.cs : added test for bug #554845.
|
||||
|
||||
2009-07-22 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XPathNavigatorTests.cs : added test for bug #515136.
|
||||
|
||||
2009-06-30 Raja R Harinath <harinath@hurrynot.org>
|
||||
|
||||
* XPathNavigatorTests.cs (XPathDocumentMoveToId) [!NET_2_0]:
|
||||
Fix compile.
|
||||
|
||||
2009-06-26 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* SelectNodesTests.cs
|
||||
XPathNavigatorCommonTests.cs
|
||||
XPathAtomicValueTests.cs
|
||||
XPathNavigatorTests.cs
|
||||
XPathNavigatorEvaluateTests.cs : convert to newer nunit style.
|
||||
|
||||
2009-05-15 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XPathNavigatorCommonTests.cs : test that LookupNamespace() in
|
||||
XmlReader from ReadSubtree() works correctly on text nodes.
|
||||
|
||||
2009-03-17 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* SelectNodesTests.cs : added 2nd test for bug #443490.
|
||||
|
||||
2009-01-20 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* SelectNodesTests.cs : added test for bug #443490.
|
||||
|
||||
2009-01-20 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* SelectNodesTests.cs : added test for bug #458245.
|
||||
|
||||
2008-12-09 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XPathNavigatorTests.cs : added test fo bug #456103.
|
||||
|
||||
2008-10-02 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XPathNavigatorEvaluateTests.cs : corrected couple of misconception
|
||||
in the tests.
|
||||
|
||||
2008-04-02 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XPathEditableNavigatorTests.cs : added test for bug #376210.
|
||||
|
||||
2008-04-02 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XPathNavigatorTests.cs : added test for bug #376191.
|
||||
|
||||
2008-03-17 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XPathNavigatorTests.cs : added test for bug #324606.
|
||||
|
||||
2008-02-27 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XPathNavigatorTests.cs : added test for bug #365112.
|
||||
|
||||
2007-11-29 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XPathNavigatorTests.cs : added ValueAs() test.
|
||||
|
||||
2007-01-05 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XPathNavigatorCommonTests.cs : added test for incorrect namespace
|
||||
node links.
|
||||
|
||||
2007-01-05 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XPathNavigatorTests.cs : added test for text() and whitespace/
|
||||
significantwhitespace node.
|
||||
|
||||
2006-12-05 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XPathNavigatorReaderTests.cs : added test for MoveToAttribute(int).
|
||||
|
||||
2006-12-05 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XPathNavigatorTests.cs : added test for XPath navigator editor's
|
||||
LookupPrefix().
|
||||
|
||||
2006-11-10 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XPathNavigatorTests.cs : added test for bug #79875, and some
|
||||
"escaped" text tests for InnerXml.
|
||||
* XPathNavigatorReaderTests.cs : make sure that most of XPath nodes
|
||||
are rejected to read subtree.
|
||||
|
||||
2006-11-10 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XPathNavigatorTests.cs : added test for bug #79874.
|
||||
|
||||
2006-10-27 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XPathNavigatorTests.cs : added (kind of) test for bug #46751.
|
||||
|
||||
2006-10-11 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XPathEditableNavigatorTests.cs : added test for CanEdit, based on
|
||||
the patch by Konstantin Triger.
|
||||
|
||||
2006-09-11 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XPathEditableNavigatorTests.cs : added test fro AppendChild() from
|
||||
a document fragment.
|
||||
|
||||
2006-09-01 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XPathNavigatorReaderTests.cs : added test for MoveToFirstAttribute()
|
||||
which is called from several current nodes.
|
||||
|
||||
2006-04-10 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XPathNavigatorCommonTests.cs : there were some evil CRLF LF mix.
|
||||
|
||||
2006-04-10 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XPathNavigatorCommonTests.cs : added test for bug #78067.
|
||||
* XPathNavigatorReaderTests.cs : ditto, for ReadSubtree() part.
|
||||
|
||||
2005-12-14 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XPathNavigatorReaderTests.cs : Actually AttributesAndNamespaces()
|
||||
does not work under MS.NET.
|
||||
|
||||
2005-12-14 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XPathNavigatorReaderTests.cs : new file for testing ReadSubtree()
|
||||
and all dependent members.
|
||||
|
||||
2005-12-13 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XPathEditableNavigatorTests.cs : added tests for MoveToFollowing().
|
||||
|
||||
2005-12-13 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XPathEditableNavigatorTests.cs : added tests that passes empty
|
||||
string to editor methods. Added tests for ReplaceSelf().
|
||||
|
||||
2005-12-13 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XPathEditableNavigatorTests.cs : added tests for PrependChild().
|
||||
|
||||
2005-12-13 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XPathEditableNavigatorTests.cs :
|
||||
Added more tests for InsertAfter() and InsertBefore().
|
||||
Added tests for DeleteRange() and ReplaceRange().
|
||||
|
||||
2005-12-13 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XPathEditableNavigatorTests.cs : added tests for InsertAfter and
|
||||
InsertBefore.
|
||||
|
||||
2005-12-13 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XPathEditableNavigatorTests.cs : new file for testing all editor
|
||||
functionality in XPathNavigator.
|
||||
|
||||
2005-12-12 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XPathNavigatorTests.cs : added tests for ValueAsXxx properties.
|
||||
|
||||
2005-10-23 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XPathNavigatorCommonTests.cs, XPathNavigatorTests.cs,
|
||||
XPathNavigatorEvaluateTests.cs :
|
||||
Added assertion labels. Marked some tests as NotDotNet under 2.0.
|
||||
|
||||
2005-08-31 Sebastien Pouliot <sebastien@ximian.com>
|
||||
|
||||
* XPathExceptionCas.cs: New. CAS unit tests for exception
|
||||
serialization.
|
||||
|
||||
2005-07-23 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XPathNavigatorCommonTests.cs : added test for bug #75609
|
||||
|
||||
2005-02-14 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XPathNavigatorTests.cs : new test code was broken.
|
||||
|
||||
2005-02-14 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XPathNavigatorTests.cs : added SignificantWhitespaceConstruction().
|
||||
|
||||
2004-09-13 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XPathAtomicValueTests.cs : added.
|
||||
|
||||
2004-03-31 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XPathNavigatorTests.cs : Added PropertiesOnNamespace().
|
||||
|
||||
2004-03-24 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* SelectNodesTests.cs : Added test for 1) not selecting previously-
|
||||
selected prefixes, and that 2) default namespace erasure (i.e.
|
||||
xmlns="") should not be selected.
|
||||
|
||||
2004-03-16 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XPathNavigatorCommonTests.cs : Added test for splitted text.
|
||||
|
||||
2004-02-17 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XPathNavigatorMatchesTest.cs : commonified some code blocks.
|
||||
Added MatchesAncestorsButNotCurrent(), MatchesParentAxis() and
|
||||
MatchesPredicatedParentAxis().
|
||||
|
||||
2004-01-28 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XPathNavigatorCommonTests.cs : Added MoveToNamespace and IsDescendant.
|
||||
* XPathNavigatorTests.cs : Close XmlTextReader.
|
||||
|
||||
2003-12-18 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
|
||||
|
||||
* XPathNavigatorTests.cs : Added XPathDocumentMoveToId().
|
||||
|
||||
2003-09-26 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
|
||||
|
||||
* XPathNavigatorTests.cs : added SelectFromOrphan().
|
||||
|
||||
2003-06-30 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
|
||||
|
||||
* Added XPathNavigatorCommonTests.cs.
|
||||
|
||||
2003-06-01 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
|
||||
|
||||
* XPathNavigatorTests.cs : added DocumentWithProcessingInstruction().
|
||||
|
||||
2003-05-16 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
|
||||
|
||||
* XPathNavigatorTests.cs : fixed not well-formed xml of
|
||||
DocumentWithXmlDeclaration().
|
||||
|
||||
2003-05-13 Martin Willemoes Hansen <mwh@sysrq.dk>
|
||||
* Tests inherits from Assertion and Assertion. prefixes removed
|
||||
|
||||
2003-04-12 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
|
||||
|
||||
* added this file as a new entry.
|
||||
See ../ChangeLog to find former ChangeLog entries.
|
||||
|
||||
@@ -1,239 +0,0 @@
|
||||
2009-11-20 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XslTransformTests.cs : added test for bug #556619 by
|
||||
Tor Lillqvist.
|
||||
|
||||
2009-04-15 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XslTransformTests.cs : test for bug #457065 by Leszek Ciesielski.
|
||||
|
||||
2008-12-09 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XslTransformTests.cs : test for bug #450797 by Jonathan Anderson.
|
||||
|
||||
2008-10-02 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XslTransformTests.cs : removed extra NotDotNet.
|
||||
|
||||
2008-06-04 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XslTransformTests.cs : added test for bug #378239.
|
||||
|
||||
2008-06-03 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XslTransformTests.cs : added test for bug #316238.
|
||||
|
||||
2008-05-22 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XslTransformTests.cs : added test for bug #391424.
|
||||
|
||||
2008-01-19 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XslTransformTests.cs : added test for bug #322551.
|
||||
|
||||
2008-01-08 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XslTransformTests.cs : added test from bug #351939.
|
||||
(by Tor Lillqvist)
|
||||
|
||||
2007-12-27 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XslTransformTests.cs : added test for bug #349375. (Actually the
|
||||
previous checkin fixed bug #349375.)
|
||||
Added another notworking one inspired by the same bug.
|
||||
|
||||
2007-12-17 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XslTransformTests.cs : added test for bug #349111.
|
||||
|
||||
2007-12-17 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XslTransformTests.cs : added test for bug #349035.
|
||||
|
||||
2007-12-17 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XslTransformTests.cs : added test for bug #348786.
|
||||
|
||||
2007-09-21 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XslTransformTests.cs : added test for bug #325482.
|
||||
|
||||
2007-08-21 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XslTransformTests.cs : added test for bug #82493.
|
||||
|
||||
2007-08-08 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XslTransformTests.cs : added test for bug #82357.
|
||||
|
||||
2006-04-07 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XslTransformTests.cs : added CurrentInSelect().
|
||||
|
||||
2006-04-07 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XslTransformTests.cs : added StripSpace().
|
||||
|
||||
2006-01-13 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XslTransformTests.cs : added DocTypeAfterText().
|
||||
|
||||
2006-01-13 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XslTransformTests.cs : Output_Indent_Xml_DocType() is working now.
|
||||
|
||||
2005-12-27 Gert Driesen <drieseng@users.sourceforge.net>
|
||||
|
||||
* XslTransformTests.cs: Extended html indentation test (and marked
|
||||
it NotWorking). Added tests for MS bugs (that have been fixed since).
|
||||
|
||||
2005-12-24 Gert Driesen <drieseng@users.sourceforge.net>
|
||||
|
||||
* XslTransformTests.cs: Enabled forwards compatible tests.
|
||||
|
||||
2005-12-23 Gert Driesen <drieseng@users.sourceforge.net>
|
||||
|
||||
* XslTransformTests.cs: Added forwards compatible tests.
|
||||
|
||||
2005-12-23 Gert Driesen <drieseng@users.sourceforge.net>
|
||||
|
||||
* XslTransformTests.cs: Added working XML/HTML indentation tests.
|
||||
|
||||
2005-12-23 Gert Driesen <drieseng@users.sourceforge.net>
|
||||
|
||||
* XslTransformTests.cs: Added bug numbers to test cases.
|
||||
|
||||
2005-12-17 Gert Driesen <drieseng@users.sourceforge.net>
|
||||
|
||||
* XsltCompileExceptionTests.cs: Added tests for ctors.
|
||||
* XsltExceptionTests.cs: Added tests for ctors.
|
||||
* XslTransformTests.cs: Added tests for validation of <xsl:output>
|
||||
attributes.
|
||||
|
||||
2005-12-12 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XslTransformTests.cs : (LocalParameter) [NotDotNet] should not have
|
||||
been undone.
|
||||
|
||||
2005-12-04 Gert Driesen <drieseng@users.sourceforge.net>
|
||||
|
||||
* XslTransformTests.cs: Explictly omit xml declaration, allowing
|
||||
test to pass on both Mono and MS.NET.
|
||||
|
||||
2005-12-04 Gert Driesen <drieseng@users.sourceforge.net>
|
||||
|
||||
* XslTransformTests.cs: Undo formatting changes.
|
||||
|
||||
2005-12-04 Gert Driesen <drieseng@users.sourceforge.net>
|
||||
|
||||
* XslTransformTests.cs: Added test for MS bug, described in KB834667.
|
||||
|
||||
2005-12-04 Gert Driesen <drieseng@users.sourceforge.net>
|
||||
|
||||
* XslTransformTests.cs: Added test for sorting an empty node set, which
|
||||
is also a test for omitting XML declaration if no XML is output.
|
||||
No longer derive from deprecated Assertion class, formatting updates.
|
||||
|
||||
2005-11-17 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XslTransformTests.cs : added WhitespaceHandling ().
|
||||
|
||||
2005-10-24 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XslTransformTests.cs : added test for bug #76530.
|
||||
|
||||
2005-10-08 Zoltan Varga <vargaz@gmail.com>
|
||||
|
||||
* XslTransformTests.cs: Remove test which depends on random GC
|
||||
behaviour.
|
||||
|
||||
2005-09-10 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XslTransformTests.cs : added testcase for bug #76115.
|
||||
* MSXslScriptTests.cs : added testcase for bug #76116.
|
||||
|
||||
2005-09-10 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XslTransformTests.cs : added testcase for bug #76046.
|
||||
|
||||
2005-08-31 Sebastien Pouliot <sebastien@ximian.com>
|
||||
|
||||
* XsltArgumentListCas.cs: New. CAS unit tests for AddExtensionObject.
|
||||
Note that this is a LinkDemand so it will succeed in 2.0 (as the test
|
||||
is executed at fulltrust).
|
||||
* XsltCompileExceptionCas.cs: New. CAS unit tests for exception
|
||||
serialization.
|
||||
* XsltExceptionCas.cs: New. CAS unit tests for exception
|
||||
serialization.
|
||||
|
||||
2005-07-29 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XslTransformTests.cs : added testcase for bug #75663.
|
||||
|
||||
2005-05-07 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* MSXslScriptTests.cs : added testcase for bug #74859.
|
||||
|
||||
2005-03-24 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XslTransformTests.cs : added (extra) test which verifies that
|
||||
XslTransform.Load() and .Transform() does not hold reference to
|
||||
stylesheet/instance XPathNavigator inside its internals.
|
||||
|
||||
2005-03-23 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XslTransformTests.cs : added test that examines if XSLT rejects
|
||||
xsl:import incorrectly placed after other contents.
|
||||
|
||||
2005-03-22 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XslTransformTests.cs : added test 1)that examines pattern sanity and
|
||||
2)that examines if empty element RTF is evaluated as true for bool.
|
||||
|
||||
2005-02-28 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* MsxslScriptTests.cs,
|
||||
XslTransformTests.cs : set NotWorking for msxsl:script tests (they
|
||||
premise runnable compilers existence which actually might not exist.)
|
||||
|
||||
2005-01-13 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* MsxslScriptTests.cs : actually it was not testing stylesheet.
|
||||
* XslTransformTests.cs : marked MSXslNodeSetRejectsNodeSet() as
|
||||
NotDotNet.
|
||||
|
||||
2004-06-06 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* MsxslScriptTests.cs : Namespace are required (found on fixing
|
||||
XmlTextReader's namespace bugfix).
|
||||
|
||||
2004-05-20 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XslTransformTests.cs : Added tests for msxsl:node-set().
|
||||
|
||||
2004-03-31 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* Added MsxslScriptTests.cs.
|
||||
|
||||
2004-03-24 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XslTransformTests.cs : Added InvalidStylesheet2().
|
||||
|
||||
2004-03-13 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XslTransformTests.cs : added some tests for invalid stylesheets.
|
||||
|
||||
2004-01-03 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* XslTransformTests.cs : fixed incorrect file path, and output childnode
|
||||
count.
|
||||
|
||||
2003-05-13 Martin Willemoes Hansen <mwh@sysrq.dk>
|
||||
|
||||
* XslTransformTests.cs: Inherits from Assertion and Assertion.
|
||||
prefix removed.
|
||||
|
||||
2003-04-12 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
|
||||
|
||||
* added this file as a new entry.
|
||||
See ../ChangeLog to find former ChangeLog entries.
|
||||
File diff suppressed because it is too large
Load Diff
@@ -51,17 +51,17 @@ namespace MonoTests.System.Xml
|
||||
public void CreateEvidenceForUrl_Basic ()
|
||||
{
|
||||
Evidence e = XmlSecureResolver.CreateEvidenceForUrl (null);
|
||||
#if DISABLE_CAS_USE
|
||||
Assert.IsNull (e);
|
||||
#else
|
||||
#if FEATURE_MONO_CAS
|
||||
Assert.AreEqual (0, e.Count, "null");
|
||||
#else
|
||||
Assert.IsNull (e);
|
||||
#endif
|
||||
|
||||
e = XmlSecureResolver.CreateEvidenceForUrl (String.Empty);
|
||||
#if DISABLE_CAS_USE
|
||||
Assert.IsNull (e);
|
||||
#else
|
||||
#if FEATURE_MONO_CAS
|
||||
Assert.AreEqual (0, e.Count, "String.Empty");
|
||||
#else
|
||||
Assert.IsNull (e);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
2004-03-31 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* Added readme.txt from Mainsoft team.
|
||||
|
||||
2004-03-31 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* Added nist_dom tests by Mainsoft hackers.
|
||||
@@ -1,3 +0,0 @@
|
||||
2004-03-31 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* Added nist_dom tests by Mainsoft hackers.
|
||||
@@ -1,17 +0,0 @@
|
||||
2005-10-23 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* Attr.cs : core0006A is not working under .NET 2.0.
|
||||
|
||||
2005-01-13 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* Attr.cs : added Category("NotDotNet") for those tests that
|
||||
exposes MS bugs.
|
||||
|
||||
2004-04-24 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* Attr.cs : Don't check locale-dependent message.
|
||||
Just check type name.
|
||||
|
||||
2004-03-31 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* Added nist_dom tests by Mainsoft hackers.
|
||||
@@ -1,3 +0,0 @@
|
||||
2004-03-31 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* Added nist_dom tests by Mainsoft hackers.
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user