diff options
author | Ronald Oussoren <ronaldoussoren@mac.com> | 2010-08-01 18:46:05 +0000 |
---|---|---|
committer | Ronald Oussoren <ronaldoussoren@mac.com> | 2010-08-01 18:46:05 +0000 |
commit | 1fa5e059a4d2fc118e798d0fe1e185894aebe0c6 (patch) | |
tree | c99897874fbf89ce75a84fd7e8f589af9ff8dc64 | |
parent | 9e291faed308c3e17d7c83980bf745472d303e77 (diff) | |
download | cpython-git-1fa5e059a4d2fc118e798d0fe1e185894aebe0c6.tar.gz |
A raise of unittest.SkipTest leaked through in the backport for issue7900,
and that causes test failes on some platforms.
-rw-r--r-- | Lib/test/test_posix.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Lib/test/test_posix.py b/Lib/test/test_posix.py index 4c0d53ac05..195df2654c 100644 --- a/Lib/test/test_posix.py +++ b/Lib/test/test_posix.py @@ -308,11 +308,12 @@ class PosixTester(unittest.TestCase): shutil.rmtree(base_path) def test_getgroups(self): - with os.popen('id -G') as idg: + with os.popen('id -G 2>/dev/null') as idg: groups = idg.read().strip() if not groups: - raise unittest.SkipTest("need working 'id -G'") + # This test needs 'id -G' + return # The order of groups isn't important, hence the calls # to sorted. |