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

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


http://hg.python.org/cpython/rev/bd49031b9488
changeset:   70471:bd49031b9488
branch:      3.1
parent:      70451:a2688e252204
user:        Ned Deily <nad at acm.org>
date:        Sun May 29 02:39:02 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
@@ -841,7 +841,7 @@
 XMLLIBSUBDIRS=  xml xml/dom xml/etree xml/parsers xml/sax
 LIBSUBDIRS=	tkinter tkinter/test tkinter/test/test_tkinter \
 		tkinter/test/test_ttk site-packages test test/data \
-		test/cjkencodings test/decimaltestdata \
+		test/cjkencodings test/decimaltestdata test/subprocessdata \
 		test/tracedmodules \
 		encodings \
 		email email/mime email/test email/test/data \
diff --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -421,6 +421,8 @@
 Tests
 -----
 
+- Issue #12205: Fix test_subprocess failure due to uninstalled test data.
+
 - Issue #11614: import __hello__ prints "Hello World!". Patch written by
   Andreas Stührk.
 

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


More information about the Python-checkins mailing list