Author: raja
Date: 2005-03-04 03:52:39 -0500 (Fri, 04 Mar 2005)
New Revision: 41430

Added:
   trunk/mcs/tests/test-354.cs
Modified:
   trunk/mcs/tests/ChangeLog
   trunk/mcs/tests/Makefile
   trunk/mcs/tests/test-353.cs
Log:
* Makefile (TEST_HARNESS_EXTRAS): Add test-353-2.cs.
* test-353.cs: Don't use ../ to refer to test-353-2.cs.

* test-354.cs: New test from #73282.


Modified: trunk/mcs/tests/ChangeLog
===================================================================
--- trunk/mcs/tests/ChangeLog   2005-03-04 08:41:36 UTC (rev 41429)
+++ trunk/mcs/tests/ChangeLog   2005-03-04 08:52:39 UTC (rev 41430)
@@ -1,3 +1,10 @@
+2005-03-04  Raja R Harinath  <[EMAIL PROTECTED]>
+
+       * Makefile (TEST_HARNESS_EXTRAS): Add test-353-2.cs.
+       * test-353.cs: Don't use ../ to refer to test-353-2.cs.
+
+       * test-354.cs: New test from #73282.
+
 2005-03-01  Marek Safar <[EMAIL PROTECTED]>
 
        * test-352.cs: New test.

Modified: trunk/mcs/tests/Makefile
===================================================================
--- trunk/mcs/tests/Makefile    2005-03-04 08:41:36 UTC (rev 41429)
+++ trunk/mcs/tests/Makefile    2005-03-04 08:52:39 UTC (rev 41430)
@@ -29,7 +29,7 @@
 #
 NEW_TEST_SOURCES_common = xml-033 xml-034 xml-035 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-351 test-352 test-353
+                         test-344 test-345 test-346 test-347 test-348 test-349 
test-351 test-352 test-353 test-354
 
 #
 # Please do _not_ add any tests here - all new tests should go into 
NEW_TEST_SOURCES_common
@@ -144,7 +144,7 @@
 # Some tests may require additional files to be available in the current 
directory.
 # To promote interoperability, we prefer that those files not be referred to 
with ../ or ..\\
 # To that end, we will copy those files to the test-harness directory, so that 
we can refer to simple filenames.
-TEST_HARNESS_EXTRAS = $(wildcard *.inc) test-74.cs
+TEST_HARNESS_EXTRAS = $(wildcard *.inc) test-74.cs test-353-2.cs
 
 all-local install-local uninstall-local:
 

Modified: trunk/mcs/tests/test-353.cs
===================================================================
--- trunk/mcs/tests/test-353.cs 2005-03-04 08:41:36 UTC (rev 41429)
+++ trunk/mcs/tests/test-353.cs 2005-03-04 08:52:39 UTC (rev 41430)
@@ -1,4 +1,4 @@
-// Compiler options: ../test-353-2.cs
+// Compiler options: test-353-2.cs
 
 using System;
  

Added: trunk/mcs/tests/test-354.cs
===================================================================
--- trunk/mcs/tests/test-354.cs 2005-03-04 08:41:36 UTC (rev 41429)
+++ trunk/mcs/tests/test-354.cs 2005-03-04 08:52:39 UTC (rev 41430)
@@ -0,0 +1,12 @@
+class MYAttr : System.Attribute {
+}
+
+[MYAttr]
+partial class A {
+  static void Main () {
+  }
+}
+
+partial class A {
+  int i;
+}

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to