History log of /external/python/cpython2/Lib/test/test_grp.py
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
1f70221b861a3714735251d57695b2f472d0599b 10-Dec-2013 Zachary Ware <zachary.ware@gmail.com> Issue #19572: More silently skipped tests explicitly skipped.
/external/python/cpython2/Lib/test/test_grp.py
01d9a775fae9f09dc185d2a6d4790adafc303a25 23-Mar-2013 Benjamin Peterson <benjamin@python.org> group ids and user ids can be longs now (#17531)
/external/python/cpython2/Lib/test/test_grp.py
f8a6391991946a3e9ce79dbca1c20aec7596f8e0 14-Dec-2010 R. David Murray <rdmurray@bitdance.com> Merged revisions 87238 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
r87238 | r.david.murray | 2010-12-14 11:20:53 -0500 (Tue, 14 Dec 2010) | 7 lines

#775964: skip YP/NIS entries instead of failing the test

Also includes doc updates mentioning that these entries may not
be retrievable via getgrnam and getgrgid.

Patch by Bobby Impollonia.
........
/external/python/cpython2/Lib/test/test_grp.py
b3be23ad27f35bae55638e2ccf0bbb121d8e66ed 05-Mar-2010 Benjamin Peterson <benjamin@python.org> remove the svn:executable property from files that don't have shebang lines
/external/python/cpython2/Lib/test/test_grp.py
b0f5adc3f4e098b1744eeac65fc830fb1df2b8ab 24-Jan-2010 Ezio Melotti <ezio.melotti@gmail.com> use assert[Not]IsInstance where appropriate
/external/python/cpython2/Lib/test/test_grp.py
5c8da86f3a515ce1a6d5f27fd15e3c5f4d8e931e 01-Jul-2009 Benjamin Peterson <benjamin@python.org> convert usage of fail* to assert*
/external/python/cpython2/Lib/test/test_grp.py
59beec326a4721154a952027cb34c3e2e4612e28 30-Mar-2009 R. David Murray <rdmurray@bitdance.com> Add import_function method to test.test_support, and modify a number of
tests that expect to be skipped if imports fail or functions don't
exist to use import_function and import_module. The ultimate goal is
to change regrtest to not skip automatically on ImportError. Checking
in now to make sure the buldbots don't show any errors on platforms
I can't direct test on.
/external/python/cpython2/Lib/test/test_grp.py
74bbc79d10862727c9126f4f8d8868c021a389e4 18-Jul-2008 Georg Brandl <georg@python.org> Replace all map(None, a) with list(a).
/external/python/cpython2/Lib/test/test_grp.py
66b4ab701be501a49424343cf02b103f4e5e9769 23-Jan-2008 Guido van Rossum <guido@python.org> 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.
/external/python/cpython2/Lib/test/test_grp.py
36850456caa30eba02d440c7c36ccdd510625767 25-May-2006 Brett Cannon <bcannon@gmail.com> Change test_values so that it compares the lowercasing of group names since getgrall() can return all lowercase names while getgrgid() returns proper casing.

Discovered on Ubuntu 5.04 (custom).
/external/python/cpython2/Lib/test/test_grp.py
0e664e15efb87b437402a7e6524d635033b7a91e 12-Dec-2005 Fredrik Lundh <fredrik@pythonware.com> skip NIS entries, empty entries, etc
/external/python/cpython2/Lib/test/test_grp.py
ce6829ade0071e5463a5dc5cde7bbb01667073d5 05-May-2003 Walter Dörwald <walter@livinglogic.de> On Mac OS X pwd.getpwall() might return the tuples
('pgsql', '*', 252, []) and ('postgres', '*', 252, ['skip']),
but pwd.getgrgid(252) might return ('pgsql', '', 252, ['skip']).

Drop the test that tried to find a tuple similar to the one
returned from pwd.getgrgid() among those for the same gid returned
by pwd.getgrall(), as the only working definition of 'similar' seems
to be 'has the same gid'. This check can be done more directly.

This should fix SF bug #732783.
/external/python/cpython2/Lib/test/test_grp.py
21d3a32b99c5763444c34c189ef653ac9745f3c4 01-May-2003 Walter Dörwald <walter@livinglogic.de> Combine the functionality of test_support.run_unittest()
and test_support.run_classtests() into run_unittest()
and use it wherever possible.

Also don't use "from test.test_support import ...", but
"from test import test_support" in a few spots.

From SF patch #662807.
/external/python/cpython2/Lib/test/test_grp.py
ce07c8a9bf67b608c03c91fd7b115922ab25f51c 23-Apr-2003 Walter Dörwald <walter@livinglogic.de> Max OS X returns "*" as the password in grp.getgrall()
and "" in grep.getgrgid(). Adjust the test to work
around this problem. This should fix SF bug #724771.
/external/python/cpython2/Lib/test/test_grp.py
ecd2fdca0f9461b149ca6d0bcf070deac5e7ca9a 22-Apr-2003 Walter Dörwald <walter@livinglogic.de> Change test_pwd and test_grp so they can handle duplicate user
and group names. This should fix SF bug #724771.
/external/python/cpython2/Lib/test/test_grp.py
64976e74af6a1ad11381f7688d5bf80aad65bc73 15-Apr-2003 Walter Dörwald <walter@livinglogic.de> Fix copy & paste error in comment.
/external/python/cpython2/Lib/test/test_grp.py
43bc1f18dbf18b9a7639f0933b829cf83d05c382 15-Apr-2003 Walter Dörwald <walter@livinglogic.de> Fix the test so that it works even when /etc/group has two entries
for the same gid.
/external/python/cpython2/Lib/test/test_grp.py
b1ded1e508d67acfb71450b353d0939e991cb288 15-Apr-2003 Walter Dörwald <walter@livinglogic.de> Port test_pwd.py to PyUnit. Check that getpwall() and
getpwnam()/getpwuid() return consistent data.

Change test_grp to check that getgrall() and
getgrnam()/getgrgid() return consistent data.
Add error checks similar to test_pwd.py.

Port test___all__.py to PyUnit.

From SF patch #662807.
/external/python/cpython2/Lib/test/test_grp.py
04f357cffef6d764f2f0ff2671dabde75ec250d1 23-Jul-2002 Barry Warsaw <barry@python.org> Get rid of relative imports in all unittests. Now anything that
imports e.g. test_support must do so using an absolute package name
such as "import test.test_support" or "from test import test_support".

This also updates the README in Lib/test, and gets rid of the
duplicate data dirctory in Lib/test/data (replaced by
Lib/email/test/data).

Now Tim and Jack can have at it. :)
/external/python/cpython2/Lib/test/test_grp.py
2e2be3760ccdfd4bdde4afdd66f4078022ba3b61 20-Sep-2001 Fred Drake <fdrake@acm.org> Change the PyUnit-based tests to use the test_main() approach. This
allows using the tests with unittest.py as a script. The tests will
still run when run as a script themselves.
/external/python/cpython2/Lib/test/test_grp.py
5b811bee5ddb1d0c3ea5d90f430a1f0e462246aa 18-May-2001 Fred Drake <fdrake@acm.org> Simple conversion to PyUnit.
/external/python/cpython2/Lib/test/test_grp.py
f785042433f0c43ed1ba2ba0388fc51d79bcf5c3 17-Jan-2001 Fredrik Lundh <fredrik@pythonware.com> a bold attempt to fix things broken by MAL's verify patch: import
'verify' iff it's used by a test module...
/external/python/cpython2/Lib/test/test_grp.py
3661908a6ac75026e4504d9f62a6ac2e2fb2ec5e 17-Jan-2001 Marc-André Lemburg <mal@egenix.com> This patch removes all uses of "assert" in the regression test suite
and replaces them with a new API verify(). As a result the regression
suite will also perform its tests in optimization mode.

Written by Marc-Andre Lemburg. Copyright assigned to Guido van Rossum.
/external/python/cpython2/Lib/test/test_grp.py
004d5e6880940ddbb38460986ac62ee0f1bae97d 23-Oct-2000 Fred Drake <fdrake@acm.org> Make reindent.py happy (convert everything to 4-space indents!).
/external/python/cpython2/Lib/test/test_grp.py
41360a4696f488e49e5409b3b1baf1fff6ae0044 26-Mar-1998 Guido van Rossum <guido@python.org> Mass check-in after untabifying all files that need it.
/external/python/cpython2/Lib/test/test_grp.py
30da0ea1243955e7f2ab1c85f45e2c20ae1f3c56 15-Dec-1997 Guido van Rossum <guido@python.org> Believe it or not, some people have an empty group database.
Prevent the test from failing there.
/external/python/cpython2/Lib/test/test_grp.py
fab8ab80674375b945e93792701c672af98da067 20-Dec-1996 Roger E. Masse <rmasse@newcnri.cnri.reston.va.us> Many scripts, but small changes. Update the way the scripts obtain the
'verbose' flag ala GvR updated test harness architecture.

Old way:

verbose = 0
if __name__ == '__main__':
verbose = 1

New way:

from test_support import verbose

Some other small readablility and functionality updates.
/external/python/cpython2/Lib/test/test_grp.py
749cc6b2411ecc898badf597b8554abb845e7f74 18-Dec-1996 Roger E. Masse <rmasse@newcnri.cnri.reston.va.us> Test script for the UNIX group file access module (grp)
/external/python/cpython2/Lib/test/test_grp.py