defined @array and defined %hash need no warnings 'deprecated';
[p5sagit/p5-mst-13.2.git] / t / op / recurse.t
old mode 100755 (executable)
new mode 100644 (file)
index af87512..2a0201a
@@ -123,9 +123,9 @@ 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");
+      is($?, 0, "64K deep recursion - no coredump expected");
   }
 }