summaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorBeoran <[email protected]>2012-11-22 11:02:17 +0100
committerBeoran <[email protected]>2012-11-22 11:02:17 +0100
commit039679f1af32af9c285ce1fff2d9e8fd52af51eb (patch)
tree12e910bfd84865519200d95339cd2340fd50f1ef /test
parent276b77021fb099b1b767d5a606ef709fafd7421b (diff)
downloadmruby-039679f1af32af9c285ce1fff2d9e8fd52af51eb.tar.gz
mruby-039679f1af32af9c285ce1fff2d9e8fd52af51eb.zip
Keep stack depth and allocation better under control and fix crash on infinite recursion.
Diffstat (limited to 'test')
-rw-r--r--test/t/exception.rb23
1 files changed, 23 insertions, 0 deletions
diff --git a/test/t/exception.rb b/test/t/exception.rb
index aa707c1b1..a2e6acc07 100644
--- a/test/t/exception.rb
+++ b/test/t/exception.rb
@@ -290,3 +290,26 @@ end
assert('Exception#inspect without message') do
Exception.new.inspect
end
+
+# very deeply recursive function that stil returns albeit very deeply so
+$test_infinite_recursion = 0
+TEST_INFINITE_RECURSION_MAX = 100000
+def test_infinite_recursion
+ $test_infinite_recursion += 1
+ if $test_infinite_recursion > TEST_INFINITE_RECURSION_MAX
+ return $test_infinite_recursion
+ end
+ test_infinite_recursion
+end
+
+assert('Infinite recursion should result in an exception being raised') do
+ a = begin
+ test_infinite_recursion
+ rescue
+ :ok
+ end
+ # OK if an exception was caught, otherwise a number will be stored in a
+ a == :ok
+end
+
+