diff options
author | Florent Xicluna <florent.xicluna@gmail.com> | 2010-08-09 17:18:05 +0000 |
---|---|---|
committer | Florent Xicluna <florent.xicluna@gmail.com> | 2010-08-09 17:18:05 +0000 |
commit | 87082ee14dd970526e65459804365a5699c7dd9a (patch) | |
tree | b4bd4f8e9576dbf47afbaa9ce6b599cb12ea8fe7 /Lib/test/test_genericpath.py | |
parent | ec882214fe84b1affeeafb324ac682cc1f6a4a69 (diff) | |
download | cpython-git-87082ee14dd970526e65459804365a5699c7dd9a.tar.gz |
Merged manually from 2.7 branch to 3.x trunk.
------------------------------------------------------------------------
r81149 | florent.xicluna | 2010-05-13 23:40:01 +0200 (jeu. 13 mai 2010) | 2 lignes
Better test skipping, with message in the log.
------------------------------------------------------------------------
r81150 | florent.xicluna | 2010-05-13 23:41:05 +0200 (jeu. 13 mai 2010) | 2 lignes
Improve test feedback to troubleshoot issue #8423 on OS X.
------------------------------------------------------------------------
r81151 | florent.xicluna | 2010-05-14 01:46:48 +0200 (ven. 14 mai 2010) | 2 lignes
Revert changeset r81150 which helped diagnose issue #8423 on some OS X buildbot.
------------------------------------------------------------------------
r82056 | florent.xicluna | 2010-06-17 22:30:56 +0200 (jeu. 17 juin 2010) | 2 lignes
Add few words about test.test_genericpath.CommonTest
------------------------------------------------------------------------
Diffstat (limited to 'Lib/test/test_genericpath.py')
-rw-r--r-- | Lib/test/test_genericpath.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/test/test_genericpath.py b/Lib/test/test_genericpath.py index 2955f49469..50638a1cf0 100644 --- a/Lib/test/test_genericpath.py +++ b/Lib/test/test_genericpath.py @@ -180,6 +180,9 @@ class GenericTest(unittest.TestCase): safe_rmdir(support.TESTFN) +# Following TestCase is not supposed to be run from test_genericpath. +# It is inherited by other test modules (macpath, ntpath, posixpath). + class CommonTest(GenericTest): # The path module to be tested pathmodule = None |