From 41fb4cd560fd0f915cc0d1a3766b6a642fab58cd Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Tue, 10 Aug 2010 02:20:33 -0700 Subject: 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. --- pym/portage/tests/runTests | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pym/portage/tests/runTests b/pym/portage/tests/runTests index a6f3b8f1c..9600f12a7 100755 --- a/pym/portage/tests/runTests +++ b/pym/portage/tests/runTests @@ -5,6 +5,13 @@ import os, sys import os.path as osp +import grp + +# 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_GRPNAME"] = grp.getgrgid(os.getgid()).gr_name # Insert our parent dir so we can do shiny import "tests" # This line courtesy of Marienz and Pkgcore ;) -- cgit v1.2.3-1-g7c22