You've already forked linux-packaging-mono
Imported Upstream version 4.3.2.467
Former-commit-id: 9c2cb47f45fa221e661ab616387c9cda183f283d
This commit is contained in:
@@ -19,6 +19,10 @@ else
|
||||
LIB_MCS_FLAGS += /d:NO_CONFIGURATION /d:NO_SECURITY_ATTRIBUTES /d:NO_CODEDOM /d:NO_DESKTOP_SECURITY
|
||||
endif
|
||||
|
||||
ifdef XAMMAC_4_5
|
||||
LIB_MCS_FLAGS += /d:NO_CONFIGURATION
|
||||
endif
|
||||
|
||||
TEST_RESOURCE_FILES = \
|
||||
Test/Resources/WSDL/collections.wsdl \
|
||||
Test/Resources/WSDL/custom-collections.wsdl
|
||||
|
||||
@@ -1,3 +1,6 @@
|
||||
System.Runtime.Serialization.Json/DataContractJsonSerializerTest.cs
|
||||
System.Runtime.Serialization.Json/JsonReaderTest.cs
|
||||
System.Runtime.Serialization.Json/JsonWriterTest.cs
|
||||
System.Runtime.Serialization/Bug11916Test.cs
|
||||
System.Runtime.Serialization/Bug666333Test.cs
|
||||
System.Runtime.Serialization/Bug675144Test.cs
|
||||
|
||||
@@ -0,0 +1,125 @@
|
||||
2010-07-06 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* DataContractJsonSerializerTest.cs : add test for bug #615800.
|
||||
|
||||
2010-07-06 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* DataContractJsonSerializerTest.cs : add test for bug #615801.
|
||||
|
||||
2010-04-05 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* DataContractJsonSerializerTest.cs : don't use ToUniversalTime()
|
||||
which makes test results timezone dependent.
|
||||
|
||||
2010-03-10 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* DataContractJsonSerializerTest.cs : oops, the test was careless.
|
||||
Use fixed date.
|
||||
|
||||
2010-03-09 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* DataContractJsonSerializerTest.cs : add test for bug #586169.
|
||||
* JsonWriterTest.cs : add standalone write case for "\/".
|
||||
|
||||
2010-01-27 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* DataContractJsonSerializerTest.cs :
|
||||
enable TypeIsNotPartsOfKnownTypes(), and add more related tests.
|
||||
|
||||
2010-01-27 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* DataContractJsonSerializerTest.cs : make some tests narrow down
|
||||
possible cause of errors to detect expected errors more precisely.
|
||||
|
||||
2010-01-27 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* DataContractJsonSerializerTest.cs : null-string case is working.
|
||||
|
||||
2010-01-27 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* DataContractJsonSerializerTest.cs : invalidate previous non-working
|
||||
tests.
|
||||
|
||||
2010-01-25 Sebastien Pouliot <sebastien@ximian.com>
|
||||
|
||||
* DataContractJsonSerializerTest.cs: Add non-working test cases
|
||||
for null-string, known types and handling floating point special
|
||||
values
|
||||
|
||||
2009-12-11 Chris Toshok <toshok@ximian.com>
|
||||
|
||||
* DataContractJsonSerializerTest.cs: add a test case for
|
||||
non-public properties.
|
||||
|
||||
2009-12-11 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* JsonReaderTest.cs : another number parse case.
|
||||
|
||||
2009-11-20 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* DataContractJsonSerializerTest.cs : added ignored test case that
|
||||
verifies 2.1 behavior (with another case that justifies removal
|
||||
of the previous hack).
|
||||
|
||||
2009-10-08 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* DataContractJsonSerializerTest.cs : added test for
|
||||
alwaysEmitTypeInformation argument.
|
||||
|
||||
2009-09-07 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* DataContractJsonSerializerTest.cs : fix non-datacontract
|
||||
serialization test. It depended on IPAddress field internals
|
||||
(runtime serialization incompatibility).
|
||||
|
||||
2009-03-13 Andreia Gaita <avidigal@novell.com>
|
||||
|
||||
* JsonReaderTest.cs: test for skip and depth (if depth fails, skip is affected)
|
||||
|
||||
2009-02-02 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* DataContractJsonSerializerTest.cs : fixed some tests to match
|
||||
.NET RTM behavior. Added read-only collection case, (but [Ignore]d).
|
||||
|
||||
2009-02-02 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* DataContractJsonSerializerTest.cs : added test for contract-less
|
||||
serialization.
|
||||
|
||||
2008-02-18 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* DataContractJsonSerializerTest.cs : added couple of DBNull tests.
|
||||
|
||||
2008-01-30 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* DataContractJsonSerializerTest.cs : added deserialization tests
|
||||
for typed object with "__type".
|
||||
|
||||
2008-01-30 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* JsonReaderTest.cs : test GetAttribute() for "__type".
|
||||
|
||||
2008-01-30 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* JsonReaderTest.cs : added tests for "__type" attributes (some of
|
||||
them are not working yet).
|
||||
|
||||
2008-01-24 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* JsonReaderTest.cs : test "type" attribute in several nodes.
|
||||
|
||||
2008-01-24 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* DataContractJsonSerializerTest.cs : some more deserialization tests.
|
||||
|
||||
2008-01-22 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* JsonWriterTest.cs : added test for writing __type attribute.
|
||||
* DataContractJsonSerializerTest.cs : added more random-ish tests.
|
||||
|
||||
2007-12-05 Atsushi Enomoto <atsushi@ximian.com>
|
||||
|
||||
* DataContractJsonSerializerTest.cs :
|
||||
moved from Test/System.Runtime.Serialization and fixed some.
|
||||
* JsonReaderTest.cs, JsonWriterTest.cs : moved from Test/System.Xml.
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1 +1 @@
|
||||
0eb5fd5cac80a730d30a79b0d0fbf4155fb5ddf1
|
||||
4a7ac6c6a3f90fba17e9dd807d02020f74fbd727
|
||||
@@ -28,7 +28,6 @@
|
||||
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
//
|
||||
|
||||
#if NET_4_0
|
||||
|
||||
using System;
|
||||
using System.Collections;
|
||||
@@ -115,4 +114,3 @@ public class ResolvedClass
|
||||
public Guid Baz = Guid.Parse ("c74376f0-5517-4cb7-8a07-35026423f565");
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
@@ -97,7 +97,6 @@ namespace MonoTests.System.Runtime.Serialization
|
||||
Assert.That (ret.TypeArguments [0].BaseType, Is.EqualTo ("System.Int32"), "#6");
|
||||
}
|
||||
|
||||
#if NET_4_0
|
||||
[Test]
|
||||
public void TestSimpleList3 ()
|
||||
{
|
||||
@@ -118,7 +117,6 @@ namespace MonoTests.System.Runtime.Serialization
|
||||
Assert.That (ret.TypeArguments.Count, Is.EqualTo (1), "#5");
|
||||
Assert.That (ret.TypeArguments [0].BaseType, Is.EqualTo ("System.Int32"), "#6");
|
||||
}
|
||||
#endif
|
||||
|
||||
[Test]
|
||||
public void TestListOfFoo ()
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
#include mobile_System.Runtime.Serialization.dll.sources
|
||||
@@ -1 +1 @@
|
||||
#include net_4_5_System.Runtime.Serialization.dll.sources
|
||||
#include net_4_x_System.Runtime.Serialization.dll.sources
|
||||
|
||||
Reference in New Issue
Block a user