summaryrefslogtreecommitdiff
path: root/test/ruby/test_bignum.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby/test_bignum.rb')
-rw-r--r--test/ruby/test_bignum.rb12
1 files changed, 0 insertions, 12 deletions
diff --git a/test/ruby/test_bignum.rb b/test/ruby/test_bignum.rb
index f6e9e65544..b60622fb17 100644
--- a/test/ruby/test_bignum.rb
+++ b/test/ruby/test_bignum.rb
@@ -196,18 +196,6 @@ class TestBignum < Test::Unit::TestCase
assert_equal([255], [T_MONE].pack("C").unpack("C"))
assert_equal([0], [T32].pack("C").unpack("C"))
assert_raise(RangeError) { 0.to_s(T32) }
- assert_raise(Errno::EINVAL) do
- begin Process.wait(0, T32P); rescue Errno::ECHILD; end
- begin Process.wait(0, T64P); rescue Errno::ECHILD; end
- end
- assert_raise(RangeError) do
- begin Process.wait(0, T32); rescue Errno::ECHILD; end
- begin Process.wait(0, T64); rescue Errno::ECHILD; end
- end
- assert_raise(RangeError) do
- begin Process.wait(0, -T32P); rescue Errno::ECHILD; end
- begin Process.wait(0, -T64P); rescue Errno::ECHILD; end
- end
end
def test_sub