aboutsummaryrefslogtreecommitdiffstats
path: root/test/ruby/test_math.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby/test_math.rb')
-rw-r--r--test/ruby/test_math.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/ruby/test_math.rb b/test/ruby/test_math.rb
index c62466d33c..5b49291df0 100644
--- a/test/ruby/test_math.rb
+++ b/test/ruby/test_math.rb
@@ -2,6 +2,7 @@ require 'test/unit'
class TestMath < Test::Unit::TestCase
def assert_infinity(a, *rest)
+ rest = ["not infinity"] if rest.empty?
assert(!a.finite?, *rest)
end
@@ -197,8 +198,8 @@ class TestMath < Test::Unit::TestCase
# no SEGV [ruby-core:25257]
31.upto(65) do |i|
i = 1 << i
- assert_infinity(Math.gamma(i))
- assert_infinity(Math.gamma(i-1))
+ assert_infinity(Math.gamma(i), "Math.gamma(#{i}) should be INF")
+ assert_infinity(Math.gamma(i-1), "Math.gamma(#{i-1}) should be INF")
end
end