Fixed tests.
authorMarek Safar <marek.safar@gmail.com>
Sun, 26 Mar 2006 16:07:02 +0000 (16:07 -0000)
committerMarek Safar <marek.safar@gmail.com>
Sun, 26 Mar 2006 16:07:02 +0000 (16:07 -0000)
svn path=/trunk/mcs/; revision=58547

mcs/tests/test-286.cs
mcs/tests/test-304.cs
mcs/tests/test-305.cs
mcs/tests/test-306.cs
mcs/tests/test-307.cs
mcs/tests/test-353.cs
mcs/tests/test-361.cs
mcs/tests/test-388.cs
mcs/tests/test-389.cs
mcs/tests/test-xml-035.cs

index a11aacfa6fb65d2289ecffb6a34d19d69ec61af7..d7c0d0338869095c8760dcc73e604c5410b79781 100644 (file)
@@ -1,4 +1,4 @@
-// Compiler options: -r:System.Xml
+// Compiler options: -r:System.Xml.dll
 
 abstract class MethodWrapper
 {
index 320d135eb3790a7fa52998d5c23efea39dbd93e8..79a86fa217d9401081db69d7d4c20526ee5f6291 100644 (file)
@@ -6,7 +6,7 @@ using C = A.D;
 
 class A
 {
-       class D { }
+       internal class D { }
        public class B
        {
                class C { }
index 7fd7fc11d63bbefc7f4fc42cfccff5196e994e03..7f170f3aed3a3b7e68a42cddbe7a8ab6e135b1a3 100644 (file)
@@ -8,7 +8,7 @@ using S = A.T;
 class A
 {
        [StructLayout (LayoutKind.Sequential)]
-       struct T { int x; }
+       public struct T { int x; }
 
        public class B
        {
index 6dd09cdbd47745443c4a6f1bec5af6a26f03cd78..9d7627b239b521478183d5545d5d028d27c6362a 100644 (file)
@@ -4,7 +4,7 @@ using C = A.D;
 
 class A
 {
-       class D : Exception { }
+       protected internal class D : Exception { }
 
        public class B
        {
index 3f4d2f4ed349ce68bed3e2332b7369f8dae3a7c6..8958075a4da8f28a1dffebebd78fb3caaeea2ae8 100644 (file)
@@ -2,9 +2,9 @@ using System;
 
 using C = A.D;
 
-class A
+public class A
 {
-       class D : IDisposable 
+       public class D : IDisposable 
        {
                void IDisposable.Dispose () { throw new Exception ("'using' and 'new' didn't resolve C as A+B+C"); }
        }
index 5aa753fdc2d4975c3d118235ed243f67dbd53aaa..e7d59d99022def97d799d076d06213e498ebee91 100644 (file)
@@ -1,4 +1,4 @@
-// Compiler options: support-353.cs -out:test-353.exe
+// Compiler options: support-353.cs
 
 using System;
  
index c3b712e5c7d2c6e51edc966925034bfeaeee5348..473448dda8ce24b8b161309a43d2adf35e0472fd 100644 (file)
@@ -1,4 +1,4 @@
-// Compiler options: support-361.cs -out:test-361.exe
+// Compiler options: support-361.cs
 
 [X]
 class Test {
index 7110eb4ab3438fc574a493b4555a40b143a7fc6d..4b48d6d4a95b2de2392af6bff78fbf718eb70810 100644 (file)
@@ -1,6 +1,6 @@
 // This is used to debug an ordering dependent bug.
 //
-// Compiler options: support-388.cs -out:test-388.exe
+// Compiler options: support-388.cs
 
 namespace Schemas {
     [System.Xml.Serialization.XmlType("base-field-type"),
index 22a13cffa825f8dd1a464f19460caaf253023295..f96b0f54b94b5b45407e2be91532405e276bea1b 100644 (file)
@@ -1,6 +1,6 @@
 // This is used to debug an ordering dependent bug.
 //
-// Compiler options: support-389.cs -out:test-389.exe
+// Compiler options: support-389.cs
 
 using System;
 using System.Collections;
index f94458e7c722cfd6b972f3b4e27885309a602821..ec321712c9a1793ddc43046f296e9b39e3a261a7 100644 (file)
@@ -1,4 +1,4 @@
-// Compiler options: -doc:xml-035.xml -warn:4 -warnaserror -r:System.Data
+// Compiler options: -doc:xml-035.xml -warn:4 -warnaserror -r:System.Data.dll
 using System;
 using System.Data;
 using System.Xml;