From b1b395911cd1676a99089d463764dc52d893004d Mon Sep 17 00:00:00 2001 From: akr Date: Wed, 4 Sep 2013 23:22:27 +0000 Subject: * bignum.c (GMP_DIV_DIGITS): New macro. (bary_divmod_gmp): New function. (rb_big_divrem_gmp): Ditto. (bary_divmod_branch): Ditto. (bary_divmod): Use bary_divmod_branch. (bigdivrem): Ditto. * internal.h (rb_big_divrem_gmp): Declared. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42840 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_bignum.rb | 3 +++ 1 file changed, 3 insertions(+) (limited to 'test/ruby/test_bignum.rb') diff --git a/test/ruby/test_bignum.rb b/test/ruby/test_bignum.rb index 5a91a2a6b6..4d87d5fca3 100644 --- a/test/ruby/test_bignum.rb +++ b/test/ruby/test_bignum.rb @@ -598,6 +598,9 @@ class TestBignum < Test::Unit::TestCase end def test_interrupt_during_bigdivrem + if defined?(Bignum::GMP_VERSION) + return # GMP doesn't support interrupt during an operation. + end return unless Process.respond_to?(:kill) begin trace = [] -- cgit v1.2.3