summaryrefslogtreecommitdiff
path: root/test/ruby
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby')
-rw-r--r--test/ruby/test_process.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/ruby/test_process.rb b/test/ruby/test_process.rb
index 29f7ec8f1d..a1c5822417 100644
--- a/test/ruby/test_process.rb
+++ b/test/ruby/test_process.rb
@@ -1167,6 +1167,7 @@ class TestProcess < Test::Unit::TestCase
def test_seteuid
assert_nothing_raised(TypeError) {Process.euid += 0}
+ rescue NotImplementedError
end
def test_getegid
@@ -1175,6 +1176,7 @@ class TestProcess < Test::Unit::TestCase
def test_setegid
assert_nothing_raised(TypeError) {Process.egid += 0}
+ rescue NotImplementedError
end
def test_uid_re_exchangeable_p