From d5a91961dd0e501a448ec3a048146132121c24c6 Mon Sep 17 00:00:00 2001 From: Ned Deily Date: Sun, 29 May 2011 02:39:02 -0700 Subject: [PATCH] Issue #12205: Fix test_subprocess failure due to uninstalled test data. --- Makefile.pre.in | 2 +- Misc/NEWS | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile.pre.in b/Makefile.pre.in index 270dfb4504f..ed1dc33509e 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 ec1bbf2fa29..f04c6436681 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.