From: Zac Medico Date: Tue, 10 Aug 2010 09:28:34 +0000 (-0700) Subject: Don't use os.getlogin() since apparently it's unreliable. X-Git-Tag: v2.2_rc68~342 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=5c325c04d52484646c2b3f70b759b92fe50be9e6;p=portage.git Don't use os.getlogin() since apparently it's unreliable. --- diff --git a/pym/portage/tests/runTests b/pym/portage/tests/runTests index 9600f12a7..05dd773c9 100755 --- a/pym/portage/tests/runTests +++ b/pym/portage/tests/runTests @@ -6,11 +6,12 @@ import os, sys import os.path as osp import grp +import pwd # Pretend that the current user's uid/gid are the 'portage' uid/gid, # so things go smoothly regardless of the current user and global # user/group configuration. -os.environ["PORTAGE_USERNAME"] = os.getlogin() +os.environ["PORTAGE_USERNAME"] = pwd.getpwuid(os.getuid()).pw_name os.environ["PORTAGE_GRPNAME"] = grp.getgrgid(os.getgid()).gr_name # Insert our parent dir so we can do shiny import "tests"