From c7d2a4936aad355dd5ae4b3f9752e12442be1b13 Mon Sep 17 00:00:00 2001 From: Oskari Timperi Date: Wed, 21 Jul 2010 10:25:32 +0300 Subject: [PATCH] Changes: Fixed a credential test to have correct set of tokens --- tests/TestScripts/test-func-launcher.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/TestScripts/test-func-launcher.py b/tests/TestScripts/test-func-launcher.py index dc93448..5144284 100644 --- a/tests/TestScripts/test-func-launcher.py +++ b/tests/TestScripts/test-func-launcher.py @@ -327,7 +327,8 @@ class launcher_tests (unittest.TestCase): creds, pid = self.get_creds('/usr/bin/fala_ft_hello') debug("fala_ft_hello has %s" % ', '.join(creds)) - req_creds = ['UID::nobody', 'GID::nogroup'] + # Credentials should be dropped, but uid/gid retained + req_creds = ['UID::user', 'GID::users'] creds.sort() req_creds.sort()