From 5c325c04d52484646c2b3f70b759b92fe50be9e6 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Tue, 10 Aug 2010 02:28:34 -0700 Subject: Don't use os.getlogin() since apparently it's unreliable. --- pym/portage/tests/runTests | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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" -- cgit v1.2.3-1-g7c22