Opening dirhandle DIR also as a file needs no warnings 'deprecated';
[p5sagit/p5-mst-13.2.git] / t / op / recurse.t
index 10830e6..2a0201a 100644 (file)
@@ -125,13 +125,7 @@ is(takeuchi($x, $y, $z), $z + 1, "takeuchi($x, $y, $z) == $z + 1");
       skip("Out of memory -- increase your data/heap?", 2)
          if $r =~ /Out of memory/i;
       is($r, '', "64K deep recursion - no output expected");
-
-      if ($^O eq 'MacOS') {
-          ok(1, "$^O: \$? is unreliable");
-      } else {
-          is($?, 0, "64K deep recursion - no coredump expected");
-      }
-
+      is($?, 0, "64K deep recursion - no coredump expected");
   }
 }