Author: atsushi
Date: 2005-04-17 08:39:24 -0400 (Sun, 17 Apr 2005)
New Revision: 43144
Added:
trunk/mcs/errors/cs0419.cs
trunk/mcs/errors/cs1574-6.cs
trunk/mcs/tests/xml-037-ref.xml
trunk/mcs/tests/xml-037.cs
trunk/mcs/tests/xml-038-ref.xml
trunk/mcs/tests/xml-038.cs
Modified:
trunk/mcs/errors/ChangeLog
trunk/mcs/tests/ChangeLog
trunk/mcs/tests/Makefile
Log:
2005-04-17 Atsushi Enomoto <[EMAIL PROTECTED]>
* cs-1574-6.cs, cs-0419.cs : added new tests (bug #71603 and #71605).
* xml-037.cs, xml-037-ref.xml,
xml-038.cs, xml-038-ref.xml : added new tests for bug #74633.
Modified: trunk/mcs/errors/ChangeLog
===================================================================
--- trunk/mcs/errors/ChangeLog 2005-04-17 11:15:45 UTC (rev 43143)
+++ trunk/mcs/errors/ChangeLog 2005-04-17 12:39:24 UTC (rev 43144)
@@ -1,3 +1,7 @@
+2005-04-17 Atsushi Enomoto <[EMAIL PROTECTED]>
+
+ * cs-1574-6.cs, cs-0419.cs : added new tests (bug #71603 and #71605).
+
2005-04-15 Raja R Harinath <[EMAIL PROTECTED]>
* cs0208-7.cs, cs0208-8.cs: New tests. Verified on CSC.
Added: trunk/mcs/errors/cs0419.cs
===================================================================
--- trunk/mcs/errors/cs0419.cs 2005-04-17 11:15:45 UTC (rev 43143)
+++ trunk/mcs/errors/cs0419.cs 2005-04-17 12:39:24 UTC (rev 43144)
@@ -0,0 +1,7 @@
+// Compiler options: -doc:dummy.xml -warn:3 -warnaserror
+/// <summary>
+/// Exposes <see cref="System.String.Replace"/> to XSLT
+/// </summary>
+public class Test {
+}
+
Added: trunk/mcs/errors/cs1574-6.cs
===================================================================
--- trunk/mcs/errors/cs1574-6.cs 2005-04-17 11:15:45 UTC (rev 43143)
+++ trunk/mcs/errors/cs1574-6.cs 2005-04-17 12:39:24 UTC (rev 43144)
@@ -0,0 +1,11 @@
+// Compiler options: -doc:dummy.xml -warnaserror -warn:1
+/// <summary>
+/// <see cref="MyDelegate(int)" />
+/// </summary>
+public class Test {
+ /// <summary>
+ /// whatever
+ /// </summary>
+ public delegate void MyDelegate(int i);
+}
+
Modified: trunk/mcs/tests/ChangeLog
===================================================================
--- trunk/mcs/tests/ChangeLog 2005-04-17 11:15:45 UTC (rev 43143)
+++ trunk/mcs/tests/ChangeLog 2005-04-17 12:39:24 UTC (rev 43144)
@@ -1,3 +1,8 @@
+2005-04-17 Atsushi Enomoto <[EMAIL PROTECTED]>
+
+ * xml-037.cs, xml-037-ref.xml,
+ xml-038.cs, xml-038-ref.xml : added new tests for bug #74633.
+
2005-04-16 Raja R Harinath <[EMAIL PROTECTED]>
* test-365.cs: New test from #73834.
Modified: trunk/mcs/tests/Makefile
===================================================================
--- trunk/mcs/tests/Makefile 2005-04-17 11:15:45 UTC (rev 43143)
+++ trunk/mcs/tests/Makefile 2005-04-17 12:39:24 UTC (rev 43144)
@@ -32,7 +32,7 @@
# Martin Baulig will manually move them into TEST_SOURCES_common after merging
the code into GMCS.
# He may also move some to TEST_EXCLUDE_net_2_0 if some of the merges are
inappropriate for GMCS.
#
-NEW_TEST_SOURCES_common = xml-033 xml-034 xml-035 xml-036 test-329 2test-16
test-330 a-parameter5 test-331 test-332 \
+NEW_TEST_SOURCES_common = xml-033 xml-034 xml-035 xml-036 xml-037 xml-038
test-329 2test-16 test-330 a-parameter5 test-331 test-332 \
test-333 test-311 test-335 test-336 test-337 test-287
test-338 test-339 test-341 test-334 test-342 \
test-344 test-345 test-346 test-347 test-348 test-349
test-350 test-351 test-352 test-353 test-354 test-355 \
test-356 test-357 test-358 test-359 test-360 test-361
test-363 test-364 test-365 test-366 \
Added: trunk/mcs/tests/xml-037-ref.xml
===================================================================
--- trunk/mcs/tests/xml-037-ref.xml 2005-04-17 11:15:45 UTC (rev 43143)
+++ trunk/mcs/tests/xml-037-ref.xml 2005-04-17 12:39:24 UTC (rev 43144)
@@ -0,0 +1,17 @@
+<?xml version="1.0"?>
+<doc>
+ <assembly>
+ <name>xml-037</name>
+ </assembly>
+ <members>
+ <member name="T:Whatever">
+ <summary>
+ <see cref="E:System.AppDomain.AssemblyResolve"/>
+ </summary>
+ </member>
+ <member name="M:Whatever.Main">
+ <summary>
+ </summary>
+ </member>
+ </members>
+</doc>
Added: trunk/mcs/tests/xml-037.cs
===================================================================
--- trunk/mcs/tests/xml-037.cs 2005-04-17 11:15:45 UTC (rev 43143)
+++ trunk/mcs/tests/xml-037.cs 2005-04-17 12:39:24 UTC (rev 43144)
@@ -0,0 +1,20 @@
+// Compiler options: -doc:xml-037.xml
+using System;
+using System.Reflection;
+
+/// <summary>
+/// <see cref="AppDomain.AssemblyResolve" />
+/// </summary>
+public class Whatever {
+ /// <summary>
+ /// </summary>
+ public static void Main() {
+ foreach (MemberInfo mi in typeof (AppDomain).FindMembers (
+ MemberTypes.All,
+ BindingFlags.Public | BindingFlags.NonPublic |
BindingFlags.Static | BindingFlags.Instance,
+ Type.FilterName,
+ "AssemblyResolve"))
+ Console.WriteLine (mi.GetType ());
+ }
+}
+
Added: trunk/mcs/tests/xml-038-ref.xml
===================================================================
--- trunk/mcs/tests/xml-038-ref.xml 2005-04-17 11:15:45 UTC (rev 43143)
+++ trunk/mcs/tests/xml-038-ref.xml 2005-04-17 12:39:24 UTC (rev 43144)
@@ -0,0 +1,17 @@
+<?xml version="1.0"?>
+<doc>
+ <assembly>
+ <name>xml-038</name>
+ </assembly>
+ <members>
+ <member name="T:Whatever">
+ <summary>
+ <see cref="E:System.AppDomain.AssemblyResolve"/>
+ </summary>
+ </member>
+ <member name="M:Whatever.Main">
+ <summary>
+ </summary>
+ </member>
+ </members>
+</doc>
Added: trunk/mcs/tests/xml-038.cs
===================================================================
--- trunk/mcs/tests/xml-038.cs 2005-04-17 11:15:45 UTC (rev 43143)
+++ trunk/mcs/tests/xml-038.cs 2005-04-17 12:39:24 UTC (rev 43144)
@@ -0,0 +1,21 @@
+// Compiler options: -doc:xml-038.xml
+using System;
+using System.Reflection;
+using System.Xml;
+
+/// <summary>
+/// <see cref="AppDomain.AssemblyResolve" />
+/// </summary>
+public class Whatever {
+ /// <summary>
+ /// </summary>
+ public static void Main() {
+ foreach (MemberInfo mi in typeof (XmlDocument).FindMembers (
+ MemberTypes.All,
+ BindingFlags.Public | BindingFlags.NonPublic |
BindingFlags.Static | BindingFlags.Instance,
+ Type.FilterName,
+ "NodeInserted"))
+ Console.WriteLine (mi.GetType ());
+ }
+}
+
_______________________________________________
Mono-patches maillist - [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches