summaryrefslogtreecommitdiff
path: root/test/ruby
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby')
-rw-r--r--test/ruby/test_process.rb9
1 files changed, 0 insertions, 9 deletions
diff --git a/test/ruby/test_process.rb b/test/ruby/test_process.rb
index 6e8ba484a4..7057e0b837 100644
--- a/test/ruby/test_process.rb
+++ b/test/ruby/test_process.rb
@@ -1454,15 +1454,6 @@ class TestProcess < Test::Unit::TestCase
assert_equal(s, s)
assert_equal(s, s.to_i)
- assert_deprecated_warn(/\buse .*Process::Status/) do
- assert_equal(s.to_i & 0x55555555, s & 0x55555555)
- end
- assert_deprecated_warn(/\buse .*Process::Status/) do
- assert_equal(s.to_i >> 1, s >> 1)
- end
- assert_raise(ArgumentError) do
- s >> -1
- end
assert_equal(false, s.stopped?)
assert_equal(nil, s.stopsig)