* support-test-*.cs: Rename from test-*-p2.cs.
[mono.git] / mcs / tests / test-389-p2.cs
diff --git a/mcs/tests/test-389-p2.cs b/mcs/tests/test-389-p2.cs
deleted file mode 100644 (file)
index cbe25c4..0000000
+++ /dev/null
@@ -1,43 +0,0 @@
-// This is used to debug an ordering dependent bug.
-//
-
-namespace Schemas {
-    [System.Xml.Serialization.XmlType("base-field-type"),
-    System.Xml.Serialization.XmlInclude(typeof(compoundfield)),
-    System.Xml.Serialization.XmlInclude(typeof(fieldtype))]
-    public partial class basefieldtype {
-
-        [System.Xml.Serialization.XmlAttribute(DataType="ID")]
-        public string id;
-
-        [System.Xml.Serialization.XmlAttribute()]
-        public string datatype;
-    }
-
-    [System.Xml.Serialization.XmlType("field-type")]
-    public partial class fieldtype: basefieldtype {}
-
-    [System.Xml.Serialization.XmlType("compound-field")]
-    public partial class compoundfield: basefieldtype {}
-
-    public partial class field {
-
-        [System.Xml.Serialization.XmlAttribute()]
-        public string id;
-
-        [System.Xml.Serialization.XmlAttribute()]
-        public string type;
-    }
-
-    [System.Xml.Serialization.XmlType("form-data")]
-    public partial class formdata {
-
-        [System.Xml.Serialization.XmlArray(ElementName="form-fields"),
-        System.Xml.Serialization.XmlArrayItem(Type=typeof(field),IsNullable=false)]
-        public field[] formfields;
-        
-               [System.Xml.Serialization.XmlElement("field-type",Type=typeof(fieldtype)),
-        System.Xml.Serialization.XmlElement("compound-field",Type=typeof(compoundfield))]
-        public basefieldtype[] Items;
-    }\r
-}