]> granicus.if.org Git - python/commitdiff
Merge: #11873: Improve test regex so random directory names don't cause test to fail
authorR David Murray <rdmurray@bitdance.com>
Thu, 5 May 2011 16:17:50 +0000 (12:17 -0400)
committerR David Murray <rdmurray@bitdance.com>
Thu, 5 May 2011 16:17:50 +0000 (12:17 -0400)
1  2 
Lib/test/test_compileall.py
Misc/NEWS

Simple merge
diff --cc Misc/NEWS
index 8cfce02108c0691cfa05f8d0a6fcafa1fae77bc0,4e0be321f994532743d7a86df3e8a51949e8957e..a67012656ec097b21b9d7686e2ad078e300d6bc0
+++ 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.