From: R David Murray Date: Thu, 5 May 2011 16:17:50 +0000 (-0400) Subject: Merge: #11873: Improve test regex so random directory names don't cause test to fail X-Git-Tag: v3.3.0a1~2398 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a4433ee300504415e5f88d75d845cc2d00874b95;p=python Merge: #11873: Improve test regex so random directory names don't cause test to fail --- a4433ee300504415e5f88d75d845cc2d00874b95 diff --cc Misc/NEWS index 8cfce02108,4e0be321f9..a67012656e --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -561,25 -322,11 +561,28 @@@ Extension Tests ----- + - Issue #11873: Change regex in test_compileall to fix occasional failures when + when the randomly generated temporary path happened to match the regex. + +- Issue #11958: Fix FTP tests for IPv6, bind to "::1" instead of "localhost". + Patch written by Charles-Francois Natali. + +- Issue #8407, #11859: Fix tests of test_io using threads and an alarm: use + pthread_sigmask() to ensure that the SIGALRM signal is received by the main + thread. + +- Issue #11811: Factor out detection of IPv6 support on the current host + and make it available as ``test.support.IPV6_ENABLED``. Patch by + Charles-François Natali. + - Issue #10914: Add a minimal embedding test to test_capi. +- Issue #11223: Skip test_lock_acquire_interruption() and + test_rlock_acquire_interruption() of test_threadsignals if a thread lock is + implemented using a POSIX mutex and a POSIX condition variable. A POSIX + condition variable cannot be interrupted by a signal (e.g. on Linux, the + futex system call is restarted). + - Issue #11790: Fix sporadic failures in test_multiprocessing.WithProcessesTestCondition. - Fix possible "file already exists" error when running the tests in parallel.