Browse Source

TARGET_JVM: add platform ignores

svn path=/trunk/mcs/; revision=71421
Konstantin Triger 19 years ago
parent
commit
f8a46744f9

+ 3 - 0
mcs/class/System.Data/Test/System.Data/DataRowCollectionTest.cs

@@ -400,6 +400,9 @@ namespace MonoTests.System.Data
 		}
 		
 		[Test]
+#if TARGET_JVM
+		[Ignore ("TD #7168")]
+#endif
 		public void CopyTo ()
 		{
 			_tbl.Columns.Add ();

+ 3 - 0
mcs/class/System.Data/Test/System.Data/DataSetTest.cs

@@ -173,6 +173,9 @@ namespace MonoTests.System.Data
 		}
 
 		[Test]
+#if TARGET_JVM
+		[Ignore ("TD #7169")]
+#endif
 		public void OwnWriteXmlSchema ()
 		{
 			DataSet ds = new DataSet ("test_dataset");

+ 12 - 3
mcs/class/System.Data/Test/System.Data/DataTableTest.cs

@@ -2746,7 +2746,9 @@ namespace MonoTests.System.Data
 		#region Read/Write XML Tests
 
 		[Test]
-		//[Category ("NotWorking")]
+#if TARGET_JVM
+		[Category ("NotWorking")]
+#endif
 		public void ReadXmlSchema () {
 			DataTable Table = new DataTable ();
 			Table.ReadXmlSchema ("Test/System.Data/own_schema1.xsd");
@@ -3621,6 +3623,9 @@ namespace MonoTests.System.Data
 		}
 
 		[Test]
+#if TARGET_JVM
+		[Category ("NotWorking")]
+#endif
 		public void WriteXmlSchema_Hierarchy () {
 			DataSet ds = new DataSet ();
 			DataTable table1 = new DataTable ();
@@ -3650,7 +3655,9 @@ namespace MonoTests.System.Data
 		}
 
 		[Test]
-		//[Category ("NotWorking")]
+#if TARGET_JVM
+		[Category ("NotWorking")]
+#endif
 		// WriteXmlSchema doesn't have overload wityh 2 parameters in System.Data
 		// and is commented-out TWICE below
 		public void ReadWriteXmlSchema()
@@ -3762,7 +3769,9 @@ namespace MonoTests.System.Data
 		}
 
 		[Test]
-		//[Category ("NotWorking")]
+#if TARGET_JVM
+		[Category ("NotWorking")]
+#endif
 		public void ReadWriteXmlSchema_IgnoreSchema () {
 			DataSet ds = new DataSet ();
 			ds.ReadXmlSchema ("Test/System.Data/store.xsd");