Small perlivp.PL updates
[p5sagit/p5-mst-13.2.git] / t / op / recurse.t
index 9d00640..10830e6 100755 (executable)
@@ -113,8 +113,25 @@ is(takeuchi($x, $y, $z), $z + 1, "takeuchi($x, $y, $z) == $z + 1");
 }
 
 # check ok for recursion depth > 65536
-is(runperl(
-       nolib => 1,
-       prog => q{$d=0; $e=1; sub c { ++$d; if ($d > 66000) { $e=0 } else { c(); c() unless $d % 32768 } --$d } c(); exit $e},
-), '', "64K deep recursion - no output expected");
-is($?, 0, "64K deep recursion - no coredump expected");
+{
+    my $r;
+    eval { 
+       $r = runperl(
+                    nolib => 1,
+                    stderr => 1,
+                    prog => q{$d=0; $e=1; sub c { ++$d; if ($d > 66000) { $e=0 } else { c(); c() unless $d % 32768 } --$d } c(); exit $e});
+    };
+  SKIP: {
+      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");
+      }
+
+  }
+}
+