You've already forked linux-packaging-mono
Imported Upstream version 3.10.0
Former-commit-id: 172c8e3c300b39d5785c7a3e8dfb08ebdbc1a99b
This commit is contained in:
@ -235,7 +235,6 @@ namespace MonoTests.System.Globalization
|
||||
}
|
||||
|
||||
[Test]
|
||||
[Category ("TargetJvmNotWorking")] //OptionalCalendars not yet supported for TARGET_JVM.
|
||||
// make sure that all CultureInfo holds non-null calendars.
|
||||
public void OptionalCalendars ()
|
||||
{
|
||||
|
@ -133,7 +133,6 @@ namespace MonoTests.System.Globalization
|
||||
Assert.AreEqual ("dddd, d' ta\\' 'MMMM yyyy", culture.DateTimeFormat.LongDatePattern);
|
||||
}
|
||||
|
||||
#if !TARGET_JVM
|
||||
[Test]
|
||||
public void Bug78569 ()
|
||||
{
|
||||
@ -143,7 +142,6 @@ namespace MonoTests.System.Globalization
|
||||
DateTime dt2 = DateTime.Parse (s, ci);
|
||||
Assert.AreEqual (dt.Month, dt2.Month);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -78,11 +78,7 @@ namespace MonoTests.System.Globalization {
|
||||
public void DeserializeKnownValue ()
|
||||
{
|
||||
MemoryStream ms = new MemoryStream (serialized_daylighttime);
|
||||
#if TARGET_JVM
|
||||
BinaryFormatter bf = (BinaryFormatter)vmw.@internal.remoting.BinaryFormatterUtils.CreateBinaryFormatter (false);
|
||||
#else
|
||||
BinaryFormatter bf = new BinaryFormatter ();
|
||||
#endif // TARGET_JVM
|
||||
DaylightTime dt = (DaylightTime) bf.Deserialize (ms);
|
||||
Assert.AreEqual (DateTime.MinValue, dt.Start, "Start");
|
||||
Assert.AreEqual (DateTime.MaxValue, dt.End, "End");
|
||||
|
Reference in New Issue
Block a user