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: Cannot run regrtest with amd64/debug on windows
Type: behavior Stage:
Components: Versions: Python 3.3
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: georg.brandl, kristjan.jonsson, python-dev
Priority: release blocker Keywords:

Created on 2012-05-29 14:56 by kristjan.jonsson, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (4)
msg161891 - (view) Author: Kristján Valur Jónsson (kristjan.jonsson) * (Python committer) Date: 2012-05-29 14:56
Running the regression tests from the build directory no longer works for Amd64/debug, windows build.

D:\pydev\hg\cpython2>PCbuild\amd64\python_d.exe -m test.regrtest
Traceback (most recent call last):
  File "D:\pydev\hg\cpython2\lib\runpy.py", line 162, in _run_module_as_main
    "__main__", fname, loader, pkg_name)
  File "D:\pydev\hg\cpython2\lib\runpy.py", line 75, in _run_code
    exec(code, run_globals)
  File "D:\pydev\hg\cpython2\lib\test\regrtest.py", line 243, in <module>
    from test import support
ImportError: cannot import name support
[96946 refs]

D:\pydev\hg\cpython2>PCbuild\amd64\python_d.exe lib\test\regrtest.py
Traceback (most recent call last):
  File "lib\test\regrtest.py", line 243, in <module>
    from test import support
ImportError: cannot import name support
[95993 refs]

This works for release.
msg161967 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2012-05-30 20:12
This should block beta1.
msg162004 - (view) Author: Kristján Valur Jónsson (kristjan.jonsson) * (Python committer) Date: 2012-05-31 14:58
I've found what is wrong.
There is a problem with _multiprocessing.pyd on 64 bit debug builds.
Why this manifests itself as it does, I don´t know.  Someone must be silencinng the proper import error.

this is most likely a build config error, that I will fix.
msg162005 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2012-05-31 15:11
New changeset c7b16e2be71a by Kristjan Valur Jonsson in branch 'default':
Issue #14952: Fix incorrect output dll names for win64/debug builds, causing
http://hg.python.org/cpython/rev/c7b16e2be71a
History
Date User Action Args
2022-04-11 14:57:31adminsetgithub: 59157
2012-05-31 15:11:41kristjan.jonssonsetstatus: open -> closed
resolution: fixed
2012-05-31 15:11:18python-devsetnosy: + python-dev
messages: + msg162005
2012-05-31 14:58:35kristjan.jonssonsetmessages: + msg162004
2012-05-30 20:12:29georg.brandlsetpriority: normal -> release blocker
nosy: + georg.brandl
messages: + msg161967

2012-05-29 14:56:36kristjan.jonssoncreate