summaryrefslogtreecommitdiff
path: root/t/op/recurse.t
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2009-09-08 08:41:38 +0200
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2009-09-08 11:27:21 +0200
commit7b903762ad0ebd5d0459692ad5c081c69a3c0808 (patch)
tree6e64cf76feca7527bf3a0b2ab962572023e5887e /t/op/recurse.t
parenta34ce875bf70f00f7af4a549f8c1ff0f4469f7fb (diff)
downloadperl-7b903762ad0ebd5d0459692ad5c081c69a3c0808.tar.gz
Remove code specific to MacOS Classic from core tests
Diffstat (limited to 't/op/recurse.t')
-rw-r--r--t/op/recurse.t8
1 files changed, 1 insertions, 7 deletions
diff --git a/t/op/recurse.t b/t/op/recurse.t
index 10830e6221..2a0201a69e 100644
--- a/t/op/recurse.t
+++ b/t/op/recurse.t
@@ -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");
}
}