[corlib] Fix ObjectPool to not incorrectly assume it was succeeding when its trial...
[mono.git] / mcs / tests / test-366.cs
index 357c4c5ac8ffb2a4088dbb605f401da815023c73..f3380e9230b7b9621aadbf57d28b5bed3af2cfbf 100644 (file)
@@ -17,26 +17,7 @@ class C
                foo2 f = new foo2 ();
 
                // On .NET if we got this far, we run
-               // On Mono, we are going to actually use an internal routine to check if the offset is there
-               //
-               Type fit = typeof (FieldInfo);
-               MethodInfo gfo = fit.GetMethod ("GetFieldOffset", BindingFlags.Instance | BindingFlags.NonPublic);
-               if (gfo == null){
-                       Console.WriteLine ("PASS: On MS runtime, Test OK");
-                       return 0;
-               }
                
-               Type t = typeof (foo2);
-               FieldInfo fi = t.GetField ("$PRIVATE$", BindingFlags.Instance | BindingFlags.NonPublic);
-
-               object res = gfo.Invoke (fi, null);
-               if (res.GetType () != typeof (Int32))
-                       return 1;
-               int r = (int) res;
-               if (r != 0){
-                       Console.WriteLine ("FAIL: Offset is not zero");
-                       return 1;
-               }
                Console.WriteLine ("PASS: Test passes on Mono");
                return 0;
     }