From: Ned Deily Date: Sun, 29 May 2011 09:39:02 +0000 (-0700) Subject: Issue #12205: Fix test_subprocess failure due to uninstalled test data. X-Git-Tag: v3.1.4rc1~3 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d5a91961dd0e501a448ec3a048146132121c24c6;p=thirdparty%2FPython%2Fcpython.git Issue #12205: Fix test_subprocess failure due to uninstalled test data. --- diff --git a/Makefile.pre.in b/Makefile.pre.in index 270dfb4504f9..ed1dc33509ea 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -841,7 +841,7 @@ MACHDEPS= $(PLATDIR) $(EXTRAPLATDIR) 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 index ec1bbf2fa299..f04c6436681a 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -421,6 +421,8 @@ Build 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.