This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: test_subprocess fails due to uninstalled test subdirectory
Type: Stage: resolved
Components: Versions: Python 3.1, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: ned.deily Nosy List: benjamin.peterson, gps, ned.deily, python-dev
Priority: normal Keywords:

Created on 2011-05-29 09:04 by ned.deily, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (3)
msg137173 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2011-05-29 09:04
======================================================================
FAIL: test_wait_when_sigchild_ignored (test.test_subprocess.POSIXProcessTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/test/test_subprocess.py", line 860, in test_wait_when_sigchild_ignored
    " non-zero with this error:\n%s" % stderr)
AssertionError: sigchild_ignore.py exited non-zero with this error:
/Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python: can't open file 'subprocessdata/sigchild_ignore.py': [Errno 2] No such file or directory

The Makefile for 3.2 was fixed but not 3.1 nor 2.7.  Fix follows.
msg137175 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2011-05-29 09:46
New changeset 8349094d1fe8 by Ned Deily in branch '2.7':
Issue #12205: Fix test_subprocess failure due to uninstalled test data.
http://hg.python.org/cpython/rev/8349094d1fe8

New changeset bd49031b9488 by Ned Deily in branch '3.1':
Issue #12205: Fix test_subprocess failure due to uninstalled test data.
http://hg.python.org/cpython/rev/bd49031b9488

New changeset 791c64fdc405 by Ned Deily in branch '3.2':
Record null merge of Issue #12205
http://hg.python.org/cpython/rev/791c64fdc405

New changeset e8e8a9dbc3c0 by Ned Deily in branch 'default':
Record null merge of Issue #12205
http://hg.python.org/cpython/rev/e8e8a9dbc3c0
msg137176 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2011-05-29 09:50
Applied to 2.7 (for 2.7.2) and 3.1 (for 3.1.4).
History
Date User Action Args
2022-04-11 14:57:17adminsetgithub: 56414
2011-05-29 09:50:18ned.deilysetstatus: open -> closed
resolution: fixed
messages: + msg137176

stage: resolved
2011-05-29 09:46:10python-devsetnosy: + python-dev
messages: + msg137175
2011-05-29 09:04:42ned.deilycreate