summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--bootstraptest/test_method.rb5
2 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index a679507eba..43ac8e4bc1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Sun Jul 27 22:11:57 2008 NARUSE, Yui <naruse@ruby-lang.org>
+
+ * bootstraptests/method.rb: increase RLIMIT_STACK size to 4M+8Kbytes
+ because FreeBSD fails this less than that.
+
Sun Jul 27 21:45:59 2008 Koichi Sasada <ko1@atdot.net>
* gc.c (gc_mark_children, obj_free): T_DEFERRED should not be appear.
diff --git a/bootstraptest/test_method.rb b/bootstraptest/test_method.rb
index 28cd2fbaf6..5bc0f8ccec 100644
--- a/bootstraptest/test_method.rb
+++ b/bootstraptest/test_method.rb
@@ -997,12 +997,13 @@ assert_equal 'ok', %q{
assert_normal_exit %q{
begin
- Process.setrlimit(Process::RLIMIT_STACK, 1024*1024)
+ Process.setrlimit(Process::RLIMIT_STACK, 4_202_496)
+ # FreeBSD fails this less than 4M + 8K bytes.
rescue Exception
exit
end
class C
- attr "a" * (2*1024*1024)
+ attr "a" * (10*1024*1024)
end
}, '[ruby-dev:31818]'