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.

Author Arfrever
Recipients Arfrever, vstinner
Date 2015-11-22.08:49:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <[email protected]>
In-reply-to
Content
test.libregrtest is not installed, which breaks running of test suite from installed Python.
Probably LIBSUBDIRS in Makefile.pre.in should be updated.

$ python3.5 -m test test_int
[1/1] test_int
1 test OK.
$ python3.6 -m test test_int
Traceback (most recent call last):
  File "/usr/lib64/python3.6/runpy.py", line 170, in _run_module_as_main
    "__main__", mod_spec)
  File "/usr/lib64/python3.6/runpy.py", line 85, in _run_code
    exec(code, run_globals)
  File "/usr/lib64/python3.6/test/__main__.py", line 1, in <module>
    from test import regrtest
  File "/usr/lib64/python3.6/test/regrtest.py", line 14, in <module>
    from test.libregrtest import main, main_in_temp_cwd
ImportError: No module named 'test.libregrtest'
History
Date User Action Args
2015-11-22 08:49:09Arfreversetrecipients: + Arfrever, vstinner
2015-11-22 08:49:09Arfreversetmessageid: <[email protected]>
2015-11-22 08:49:08Arfreverlinkissue25694 messages
2015-11-22 08:49:08Arfrevercreate