Be more lax about the out of memory error message.
Jarkko Hietaniemi [Tue, 11 Mar 2003 09:19:54 +0000 (09:19 +0000)]
p4raw-id: //depot/perl@18915

t/op/recurse.t

index af87512..66c33ef 100755 (executable)
@@ -123,7 +123,7 @@ is(takeuchi($x, $y, $z), $z + 1, "takeuchi($x, $y, $z) == $z + 1");
     };
   SKIP: {
       skip("Out of memory -- increase your data/heap?", 2)
-         if $r =~ /Out of memory!/;
+         if $r =~ /Out of memory/i;
       is($r, '', "64K deep recursion - no output expected");
       is($?,  0, "64K deep recursion - no coredump expected");
   }