All the test throw exceptions. In the specific case of the TypedDataSetsWithBinaryRemotingFormat() Test, a IndexOutOfRangeException is thrown.
My testing environment is Windows xp sp3. I have the .net framework 2.0 and mono 2.0 rc1 installed. I hope this helps. Daniel Morgan-3 wrote: > > When you say test does not succeed, how so? > > Exceptions thrown? > DataSet is not populated with a table? > > > --- On Wed, 9/10/08, marcos b <[EMAIL PROTECTED]> wrote: > >> From: marcos b <[EMAIL PROTECTED]> >> Subject: [Mono-dev] Are these bugs/features going to be fixed/released in >> the next builds? >> To: [email protected] >> Date: Wednesday, September 10, 2008, 10:55 AM >> All of these tests succeed in Microsoft .net runtime, but >> none does using >> mono. >> >> >> [Test] >> public void TypedDataSetsWithBinaryRemotingFormat() >> { >> DataSet1 ds = new DataSet1(); >> ds.RemotingFormat = SerializationFormat.Binary; >> >> BinaryFormatter f = new BinaryFormatter(); >> MemoryStream ms = new MemoryStream(); >> f.Serialize(ms, ds); >> } >> >> [Test] >> public void RemotingCustomErrorsModeConfiguration() >> { >> RemotingConfiguration.CustomErrorsMode = >> CustomErrorsModes.Off; >> } >> >> [Test] >> public void NullableConverterConstructor() >> { >> Type t = typeof(int?); >> NullableConverter nullableConverter; >> nullableConverter = new NullableConverter(t); >> } >> >> [Test] >> public void AdoAdapterUpdate() >> { >> using (SqlConnection cn = GetConnection()) >> { >> SqlDataAdapter da = new >> SqlDataAdapter("Select * from >> PackageLink", cn); >> >> DataTable dt = new DataTable(); >> da.Fill(dt); >> >> DbCommandBuilder builder = new >> SqlCommandBuilder(da); >> >> dt.Rows[0]["Description"] = >> "changed"; >> da.Update(dt); >> } >> } >> >> Thanks in advance for any comment. >> -- >> View this message in context: >> http://www.nabble.com/Are-these-bugs-features-going-to-be-fixed-released-in-the-next-builds--tp19414773p19414773.html >> Sent from the Mono - Dev mailing list archive at >> Nabble.com. >> >> _______________________________________________ >> Mono-devel-list mailing list >> [email protected] >> http://lists.ximian.com/mailman/listinfo/mono-devel-list > > > > _______________________________________________ > Mono-devel-list mailing list > [email protected] > http://lists.ximian.com/mailman/listinfo/mono-devel-list > > -- View this message in context: http://www.nabble.com/Are-these-bugs-features-going-to-be-fixed-released-in-the-next-builds--tp19414773p19420040.html Sent from the Mono - Dev mailing list archive at Nabble.com. _______________________________________________ Mono-devel-list mailing list [email protected] http://lists.ximian.com/mailman/listinfo/mono-devel-list
