projects
/
platform
/
upstream
/
perl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
87569c6
)
Be more lax about the out of memory error message.
author
Jarkko Hietaniemi
<jhi@iki.fi>
Tue, 11 Mar 2003 09:19:54 +0000
(09:19 +0000)
committer
Jarkko Hietaniemi
<jhi@iki.fi>
Tue, 11 Mar 2003 09:19:54 +0000
(09:19 +0000)
p4raw-id: //depot/perl@18915
t/op/recurse.t
patch
|
blob
|
history
diff --git
a/t/op/recurse.t
b/t/op/recurse.t
index
af87512
..
66c33ef
100755
(executable)
--- a/
t/op/recurse.t
+++ b/
t/op/recurse.t
@@
-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");
}