summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Deily <nad@acm.org>2011-05-29 02:36:17 -0700
committerNed Deily <nad@acm.org>2011-05-29 02:36:17 -0700
commite08f2eaac95d68eaeaf347239d07d9b2c3ddf1a9 (patch)
tree0b36f9ba823eb76f1d5f231f8588c8fc16417325
parent965c63f27585bec810cbfba67279bfe74891dd1b (diff)
downloadcpython-e08f2eaac95d68eaeaf347239d07d9b2c3ddf1a9.tar.gz
Issue #12205: Fix test_subprocess failure due to uninstalled test data.
-rw-r--r--Makefile.pre.in2
-rw-r--r--Misc/NEWS2
2 files changed, 3 insertions, 1 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in
index fbd54c7ba7..ed0d116489 100644
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -854,7 +854,7 @@ PLATMACDIRS= plat-mac plat-mac/Carbon plat-mac/lib-scriptpackages \
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
index 47c47850f7..4540d5f242 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -488,6 +488,8 @@ IDLE
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.