[Python-checkins] cpython (2.7): Issue #12205: Fix test_subprocess failure due to uninstalled test data.

ned.deily python-checkins at python.org
Sun May 29 11:46:09 CEST 2011


http://hg.python.org/cpython/rev/8349094d1fe8
changeset:   70470:8349094d1fe8
branch:      2.7
parent:      70462:a2f088cf7ced
user:        Ned Deily <nad at acm.org>
date:        Sun May 29 02:36:17 2011 -0700
summary:
  Issue #12205: Fix test_subprocess failure due to uninstalled test data.

files:
  Makefile.pre.in |  2 +-
  Misc/NEWS       |  2 ++
  2 files changed, 3 insertions(+), 1 deletions(-)


diff --git a/Makefile.pre.in b/Makefile.pre.in
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -854,7 +854,7 @@
 PLATMACPATH=:plat-mac:plat-mac/lib-scriptpackages
 LIBSUBDIRS=	lib-tk lib-tk/test lib-tk/test/test_tkinter \
 		lib-tk/test/test_ttk site-packages test test/data \
-		test/cjkencodings test/decimaltestdata test/xmltestdata \
+		test/cjkencodings test/decimaltestdata test/xmltestdata test/subprocessdata \
 		test/tracedmodules \
 		encodings compiler hotshot \
 		email email/mime email/test email/test/data \
diff --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -488,6 +488,8 @@
 Tests
 -----
 
+- Issue #12205: Fix test_subprocess failure due to uninstalled test data.
+
 - Issue #5723: Improve json tests to be executed with and without accelerations.
 
 - Issue #11910: Fix test_heapq to skip the C tests when _heapq is missing.

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list