From 66b4ab701be501a49424343cf02b103f4e5e9769 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Wed, 23 Jan 2008 01:18:27 +0000 Subject: I'm tired of these tests breaking at Google due to our large number of users and groups in LDAP/NIS. So I'm limiting the extra-heavy part of the tests to passwd/group files with at most 1000 entries. --- Lib/test/test_grp.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Lib/test/test_grp.py') diff --git a/Lib/test/test_grp.py b/Lib/test/test_grp.py index 08958ba071..a8dcb631f4 100755 --- a/Lib/test/test_grp.py +++ b/Lib/test/test_grp.py @@ -25,6 +25,9 @@ class GroupDatabaseTestCase(unittest.TestCase): for e in entries: self.check_value(e) + if len(entries) > 1000: # Huge group file (NIS?) -- skip the rest + return + for e in entries: e2 = grp.getgrgid(e.gr_gid) self.check_value(e2) -- cgit v1.2.1