Skip to content

Commit a359da8

Browse files
committed
* test/ruby/test_backtrace.rb: decrease recursion depth
to reduce consuming stack size. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36177 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent 407e327 commit a359da8

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
Fri Jun 22 17:55:48 2012 Koichi Sasada <[email protected]>
2+
3+
* test/ruby/test_backtrace.rb: decrease recursion depth
4+
to reduce consuming stack size.
5+
16
Fri Jun 22 13:36:50 2012 Nobuyoshi Nakada <[email protected]>
27

38
* random.c (random_init, random_load): cannot initialize frozen object

test/ruby/test_backtrace.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def test_caller_lev
3333
assert_equal(nil, cs[4])
3434

3535
#
36-
max = 10
36+
max = 7
3737
rec = lambda{|n|
3838
if n > 0
3939
1.times{

0 commit comments

Comments
 (0)