summaryrefslogtreecommitdiffstats
path: root/Lib/test/support
Commit message (Collapse)AuthorAgeFilesLines
* Issue #20667: KqueueEventLoopTests.test_read_pty_output() hangs also on ↵Victor Stinner2014-02-181-10/+0
| | | | OpenBSD 5.5.
* Issue #20667: test_asyncio: Skip KqueueEventLoopTests.test_read_pty_output() onVictor Stinner2014-02-181-0/+10
| | | | OpenBSD older than 5.5
* Issue #20532: Tests which use _testcapi now are marked as CPython only.Serhiy Storchaka2014-02-071-1/+2
|\
| * Issue #20532: Tests which use _testcapi now are marked as CPython only.Serhiy Storchaka2014-02-071-1/+1
| |
* | Issue #18874: Implement the PEP 454 (tracemalloc)Victor Stinner2013-11-231-0/+19
| |
* | Issue #19718: Add a case-insensitive FS check to test.support to useBrett Cannon2013-11-221-1/+15
| | | | | | | | | | | | | | in test_pathlib. Purposefully designed to work from a specified directory in case multiple file systems are used on the system.
* | Fix test.support.bind_port() to not cause an error when Python was compiledGregory P. Smith2013-11-171-3/+9
|\ \ | |/ | | | | | | on a system with SO_REUSEPORT defined in the headers but run on a system with an OS kernel that does not support that reasonably new socket option.
| * Fix test.support.bind_port() to not cause an error when Python was compiledGregory P. Smith2013-11-171-3/+9
| | | | | | | | | | on a system with SO_REUSEPORT defined in the headers but run on a system with an OS kernel that does not support that reasonably new socket option.
* | test.support: considering the module is a mix of utilities unrelated with ↵Giampaolo Rodola'2013-11-121-18/+36
| | | | | | | | each other divide __all__ in sub-sections so that it can be used as a quick-reference doc
* | Mitigate #19412: restore test skips for --without-doc-stringsNick Coghlan2013-10-271-1/+6
| |
* | Issue #19330: Handle the no-docstrings case in testsNick Coghlan2013-10-261-3/+7
| |
* | Issue #18948: improve SuppressCoreFiles to include Windows crash popup ↵Antoine Pitrou2013-10-081-62/+62
| | | | | | | | | | | | suppression, and use it in more tests. Patch by Valerie Lambert and Zachary Ware.
* | Merge #18952 fix from 3.3Nick Coghlan2013-09-081-12/+19
|\ \ | |/
| * Close #18952: correctly download test support dataNick Coghlan2013-09-081-12/+19
| | | | | | | | | | | | | | | | | | | | | | | | When test.support was converted to a package, it started silently skipping the tests which needed to download support data to run. This change refactors the affected code, and also tidies up test.support.findfile to remove the unused *here* parameter, document the *subdir* parameter and rename the *filename* parameter to avoid shadowing the file builtin and be consistent with the documentation. The unexpected skips were noticed and reported by Zachary Ware
| * Merge.Charles-François Natali2013-08-291-2/+8
| |\
* | | Remove old-school inheritanceAntoine Pitrou2013-09-061-1/+1
| | |
* | | Issue #18623: Factor out the _SuppressCoreFiles context manager into ↵Antoine Pitrou2013-09-061-0/+45
| | | | | | | | | | | | | | | | | | test.support. Patch by Valerie Lambert.
* | | Use the recent support.HOSTv6 addition.Charles-François Natali2013-08-311-1/+1
| | |
* | | Merge.Charles-François Natali2013-08-291-2/+8
|\ \ \
| * \ \ Issue #18643: Fix some test_socket failures due to large default socket bufferCharles-François Natali2013-08-291-2/+8
| |\ \ \ | | | |/ | | |/| | | | | sizes.
| | * | Issue #18643: Fix some test_socket failures due to large default socket bufferCharles-François Natali2013-08-291-2/+8
| | | | | | | | | | | | | | | | sizes.
* | | | (Merge 3.3) Fix @requires_freebsd_version and @requires_linux_versionVictor Stinner2013-08-281-0/+2
|\ \ \ \ | |/ / / |/| | / | | |/ | |/| decorators of test.support, run the test if the platform matchs!
| * | Fix @requires_freebsd_version and @requires_linux_version decorators ofVictor Stinner2013-08-281-0/+2
| |/ | | | | | | test.support, run the test if the platform matchs!
| * Issue #18792: Use "127.0.0.1" or "::1" instead of "localhost" as much as ↵Antoine Pitrou2013-08-211-1/+5
| | | | | | | | possible, since "localhost" goes through a DNS lookup under recent Windows versions.
* | Issue #18792: Use "127.0.0.1" or "::1" instead of "localhost" as much as ↵Antoine Pitrou2013-08-211-1/+5
| | | | | | | | possible, since "localhost" goes through a DNS lookup under recent Windows versions.
* | #18741: merge with 3.3.Ezio Melotti2013-08-171-2/+2
|\ \ | |/
| * #18741: fix more typos. Patch by Févry Thibault.Ezio Melotti2013-08-171-2/+2
| |
* | Make test.support.reap_threads() fasterAntoine Pitrou2013-08-161-2/+2
| |
* | Close #12645: Clarify and reformat the documentation of import_fresh_moduleEli Bendersky2013-08-111-12/+25
|\ \ | |/
| * Issue #12645: Clarify and reformat the documentation of import_fresh_moduleEli Bendersky2013-08-111-11/+25
| |
* | Merge #15415 from 3.3Nick Coghlan2013-07-281-18/+58
|\ \ | |/
| * Close #15415: Factor out temp dir helpers to test.supportNick Coghlan2013-07-281-18/+58
| | | | | | | | Patch by Chris Jerdonek
| * Issue #15494: test.support is now a package rather than a moduleNick Coghlan2013-07-281-0/+1990
| | | | | | | Also including this change in 3.3 to help avoid spurious conflicts between the two most active branches. (Initial patch by Indra Talip)
* Close #15494: test.support is now a package rather than a moduleNick Coghlan2013-07-281-0/+1992
Initial patch by Indra Talip