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_capi.test_subinterps() fails on ARMv7 Ubuntu 3.x
Type: Stage: resolved
Components: Tests Versions: Python 3.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: eric.snow, vstinner
Priority: normal Keywords:

Created on 2017-05-24 00:20 by vstinner, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 1791 merged eric.snow, 2017-05-24 18:16
Messages (5)
msg294302 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2017-05-24 00:20
http://buildbot.python.org/all/builders/ARMv7%20Ubuntu%203.x/builds/786/steps/test/logs/stdio

======================================================================
FAIL: test_subinterps (test.test_capi.EmbeddingTests)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/ssd/buildbot/buildarea/3.x.gps-ubuntu-exynos5-armv7l/build/Lib/test/test_capi.py", line 471, in test_subinterps
    self.assertNotEqual(interp.interp, main.interp)
AssertionError: '0x0' == '0x0'
msg294313 - (view) Author: Eric Snow (eric.snow) * (Python committer) Date: 2017-05-24 04:19
Yeah, I some extra checks (involving pointers) to that test and some platforms don't work as expected.  I'll take a look in the morning.
msg294317 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2017-05-24 04:24
Ok thanks of taking care of my little buildbot babies.
msg294416 - (view) Author: Eric Snow (eric.snow) * (Python committer) Date: 2017-05-25 00:19
New changeset d1c3c13fedaf62b71445ccd048e395aa4a7d510f by Eric Snow in branch 'master':
bpo-30447: Fix/skip the subinterpreters test on some platforms. (#1791)
https://github.com/python/cpython/commit/d1c3c13fedaf62b71445ccd048e395aa4a7d510f
msg294464 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2017-05-25 10:52
Thanks for fixing that one Eric.
History
Date User Action Args
2022-04-11 14:58:46adminsetgithub: 74632
2017-05-25 10:52:56vstinnersetmessages: + msg294464
2017-05-25 00:20:42eric.snowsetstatus: open -> closed
resolution: fixed
stage: resolved
2017-05-25 00:19:49eric.snowsetmessages: + msg294416
2017-05-24 18:16:01eric.snowsetpull_requests: + pull_request1874
2017-05-24 04:24:30vstinnersetmessages: + msg294317
2017-05-24 04:19:36eric.snowsetmessages: + msg294313
2017-05-24 00:20:39vstinnercreate