Rename variabls

* uid always stores uid
* user stores username or nil

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37131 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2012-10-10 12:38:15 +00:00
parent ba7c9b1cf7
commit 187ae6d5a7

View File

@ -1481,7 +1481,7 @@ class TestProcess < Test::Unit::TestCase
def test_execopts_uid
feature6975 = '[ruby-core:47414]'
[30000, [ENV["USER"], Process.uid]].each do |user, uid|
[30000, [Process.uid, ENV["USER"]]].each do |uid, user|
if user
assert_nothing_raised(feature6975) do
begin
@ -1498,11 +1498,10 @@ class TestProcess < Test::Unit::TestCase
end
end
uid = "#{uid || user}"
assert_nothing_raised(feature6975) do
begin
u = IO.popen([RUBY, "-e", "print Process.uid", uid: user], &:read)
assert_equal(uid, u, feature6975)
u = IO.popen([RUBY, "-e", "print Process.uid", uid: user||uid], &:read)
assert_equal(uid.to_s, u, feature6975)
rescue Errno::EPERM, NotImplementedError
end
end