Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #19572: More silently skipped tests explicitly skipped. | Zachary Ware | 2013-12-10 | 1 | -6/+11 |
| | |||||
* | group ids and user ids can be longs now (#17531) | Benjamin Peterson | 2013-03-23 | 1 | -2/+2 |
| | |||||
* | Issue #4591: Uid and gid values larger than 2**31 are supported now. | Serhiy Storchaka | 2013-02-12 | 1 | -0/+9 |
| | |||||
* | Make test_pwd more stable in the face of unusual LDAP/NIS/Kerberos ↵ | Collin Winter | 2010-03-18 | 1 | -5/+8 |
| | | | | deployments (the old test was flaky on Google buildslaves). | ||||
* | use assert[Not]IsInstance where appropriate | Ezio Melotti | 2010-01-24 | 1 | -7/+7 |
| | |||||
* | use assert[Not]In where appropriate | Ezio Melotti | 2010-01-23 | 1 | -2/+2 |
| | |||||
* | convert usage of fail* to assert* | Benjamin Peterson | 2009-06-30 | 1 | -9/+9 |
| | |||||
* | Add import_function method to test.test_support, and modify a number of | R. David Murray | 2009-03-30 | 1 | -1/+1 |
| | | | | | | | | 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. | ||||
* | Replace all map(None, a) with list(a). | Georg Brandl | 2008-07-18 | 1 | -2/+2 |
| | |||||
* | I'm tired of these tests breaking at Google due to our large number of | Guido van Rossum | 2008-01-23 | 1 | -0/+3 |
| | | | | | 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. | ||||
* | skip NIS entries, empty entries, etc | Fredrik Lundh | 2005-12-12 | 1 | -2/+2 |
| | |||||
* | skip nis entries, if not filtered out by getpwall itself | Fredrik Lundh | 2005-12-12 | 1 | -0/+2 |
| | |||||
* | Combine the functionality of test_support.run_unittest() | Walter Dörwald | 2003-05-01 | 1 | -3/+1 |
| | | | | | | | | | | 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. | ||||
* | Whitespace normalization. | Tim Peters | 2003-04-24 | 1 | -1/+0 |
| | |||||
* | Change test_pwd and test_grp so they can handle duplicate user | Walter Dörwald | 2003-04-22 | 1 | -1/+3 |
| | | | | and group names. This should fix SF bug #724771. | ||||
* | Fix the test so that it works even when /etc/passwd has two entries | Walter Dörwald | 2003-04-15 | 1 | -1/+12 |
| | | | | for the same uid. | ||||
* | Port test_pwd.py to PyUnit. Check that getpwall() and | Walter Dörwald | 2003-04-15 | 1 | -63/+74 |
| | | | | | | | | | | | | 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. | ||||
* | Get rid of relative imports in all unittests. Now anything that | Barry Warsaw | 2002-07-23 | 1 | -1/+1 |
| | | | | | | | | | | | 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. :) | ||||
* | String method conversion. | Eric S. Raymond | 2001-02-09 | 1 | -2/+1 |
| | | | | (This one was trivial -- no actual string. references in it!) | ||||
* | a bold attempt to fix things broken by MAL's verify patch: import | Fredrik Lundh | 2001-01-17 | 1 | -1/+1 |
| | | | | 'verify' iff it's used by a test module... | ||||
* | This patch removes all uses of "assert" in the regression test suite | Marc-André Lemburg | 2001-01-17 | 1 | -1/+1 |
| | | | | | | | 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. | ||||
* | Update the code to better reflect recommended style: | Fred Drake | 2000-12-12 | 1 | -2/+2 |
| | | | | | Use != instead of <> since <> is documented as "obsolescent". Use "is" and "is not" when comparing with None or type objects. | ||||
* | Make reindent.py happy (convert everything to 4-space indents!). | Fred Drake | 2000-10-23 | 1 | -1/+1 |
| | |||||
* | typos fixed by Rob Hooft | Jeremy Hylton | 2000-06-28 | 1 | -1/+1 |
| | |||||
* | Mass check-in after untabifying all files that need it. | Guido van Rossum | 1998-03-26 | 1 | -18/+18 |
| | |||||
* | More robust way of choosing a non-existant uid (faster, too). | Guido van Rossum | 1997-05-20 | 1 | -1/+1 |
| | | | | (Correct version -- the previous checkin was a keyboard slip.) | ||||
* | More robust way of choosing a non-existant uid (faster, too). | Guido van Rossum | 1997-05-20 | 1 | -4/+4 |
| | |||||
* | test_rotor.py: New test of the rotor module. | Barry Warsaw | 1996-12-23 | 1 | -6/+8 |
| | | | | | | | test_*: converted to the new test harness. GvR note! test_signal.py works interatively (i.e. when verbose=1) but does not work inside the test harness. It must be a timing issue, but I haven't figured it out yet. | ||||
* | Test of the pwd module | Barry Warsaw | 1996-12-11 | 1 | -0/+70 |