[issue37359] test_regrtest: test_list_cases() fails on x86 Gentoo Installed with X 3.x

2019-07-29 Thread STINNER Victor
STINNER Victor added the comment: The current status is that regrtest has a new --cleanup command but it's not used. regrtest should not leak temporary files anymore. The remaining issue is when regrtest re-runs tests sequentially and a test does crash the regrtest main process. In this case

[issue37359] test_regrtest: test_list_cases() fails on x86 Gentoo Installed with X 3.x

2019-06-26 Thread STINNER Victor
STINNER Victor added the comment: Until a solution is found, I disabled cleantest to repair *again* the Gentoo buildbot worker: https://github.com/python/buildmaster-config/commit/378f0e4daed2c26479ee9571bd869110a6733ecc -- ___ Python tracker

[issue37359] test_regrtest: test_list_cases() fails on x86 Gentoo Installed with X 3.x

2019-06-26 Thread STINNER Victor
STINNER Victor added the comment: > * Another idea? Another idea is to change the name of temporary directories to add a different prefix per Python branch. Like use "test_python_39_" for Python 3.9. But I'm not sure how custom jobs come into the play here. Python is not aware of "custom",

[issue37359] test_regrtest: test_list_cases() fails on x86 Gentoo Installed with X 3.x

2019-06-26 Thread STINNER Victor
STINNER Victor added the comment: Oh, this feature has an issue on buildbots. For the 2 workers which allows more than 1 job in parallel, cleantest removes working directories of other running tests... "x86 Gentoo Installed with X 3.7" is fighting with "x86 Gentoo Installed with X 3.8" for

[issue37359] test_regrtest: test_list_cases() fails on x86 Gentoo Installed with X 3.x

2019-06-25 Thread STINNER Victor
STINNER Victor added the comment: x86 Gentoo Installed with X 3.x is fixed as well. I close again the issue. -- resolution: -> fixed status: open -> closed ___ Python tracker ___

[issue37359] test_regrtest: test_list_cases() fails on x86 Gentoo Installed with X 3.x

2019-06-24 Thread STINNER Victor
STINNER Victor added the comment: Oh I see, this specific buildbot uses a different buildbot configuration that I forgot to patch. It should now be fixed as well: https://github.com/python/buildmaster-config/commit/f546fa0cfa0bf1ac77970c2eaa001923d8df7cbf New build which should use this confi

[issue37359] test_regrtest: test_list_cases() fails on x86 Gentoo Installed with X 3.x

2019-06-24 Thread STINNER Victor
STINNER Victor added the comment: > The issue strikes back: > https://buildbot.python.org/all/#/builders/103/builds/2698 Not good. This build was run after I deployed the new buildbot configuraiton, with the new "cleantest" step, but it has no "cleantest" step. Maybe this job was scheduled b

[issue37359] test_regrtest: test_list_cases() fails on x86 Gentoo Installed with X 3.x

2019-06-24 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: The issue strikes back: https://buildbot.python.org/all/#/builders/103/builds/2698 -- resolution: fixed -> status: closed -> open ___ Python tracker ___

[issue37359] test_regrtest: test_list_cases() fails on x86 Gentoo Installed with X 3.x

2019-06-24 Thread STINNER Victor
STINNER Victor added the comment: I am not 100% sure that my change will fix the following warning on x86 Gentoo Installed with X 3.x, but I'm quite confident :-) RuntimeWarning: tests may fail, unable to create temporary directory '/buildbot/tmp/tmpdir/test_python_28144': [Errno 17] File ex

[issue37359] test_regrtest: test_list_cases() fails on x86 Gentoo Installed with X 3.x

2019-06-24 Thread STINNER Victor
STINNER Victor added the comment: cleantest was also run on Windows buildbots. Example a Windows 2.7 buildbot: https://buildbot.python.org/all/#/builders/70/builds/415 D:\buildarea\2.7.ware-win81-release.nondebug\build>"D:\buildarea\2.7.ware-win81-release.nondebug\build\PCbuild\amd64\python"

[issue37359] test_regrtest: test_list_cases() fails on x86 Gentoo Installed with X 3.x

2019-06-24 Thread STINNER Victor
STINNER Victor added the comment: cleantest was run successfully on the 4 Fedora workers: 3.x: https://buildbot.python.org/all/#/builders/185/builds/641 3.8: https://buildbot.python.org/all/#/builders/218/builds/98 3.7: https://buildbot.python.org/all/#/builders/181/builds/168 2.7: https://bui

[issue37359] test_regrtest: test_list_cases() fails on x86 Gentoo Installed with X 3.x

2019-06-24 Thread miss-islington
miss-islington added the comment: New changeset 5779898a1f2e959d4064c34ab3c655f785795322 by Miss Islington (bot) in branch '3.7': bpo-37359: Fix regrtest --cleanup (GH-14336) https://github.com/python/cpython/commit/5779898a1f2e959d4064c34ab3c655f785795322 -- __

[issue37359] test_regrtest: test_list_cases() fails on x86 Gentoo Installed with X 3.x

2019-06-24 Thread miss-islington
miss-islington added the comment: New changeset 366dac99c0c0c416a37874140696f59178db4e43 by Miss Islington (bot) in branch '3.8': bpo-37359: Fix regrtest --cleanup (GH-14336) https://github.com/python/cpython/commit/366dac99c0c0c416a37874140696f59178db4e43 -- nosy: +miss-islington

[issue37359] test_regrtest: test_list_cases() fails on x86 Gentoo Installed with X 3.x

2019-06-24 Thread STINNER Victor
STINNER Victor added the comment: I deployed the new buildbot configuration. New builds should run "make cleanup" (Unix) or "python -m test --cleanup" (Windows) on Python 2.7, 3.7, 3.8 and master, but not on custom branches. -- ___ Python tracker

[issue37359] test_regrtest: test_list_cases() fails on x86 Gentoo Installed with X 3.x

2019-06-24 Thread miss-islington
Change by miss-islington : -- pull_requests: +14158 pull_request: https://github.com/python/cpython/pull/14338 ___ Python tracker ___ __

[issue37359] test_regrtest: test_list_cases() fails on x86 Gentoo Installed with X 3.x

2019-06-24 Thread STINNER Victor
STINNER Victor added the comment: New changeset 9d55bf440cd0b8b06509318d7676c0744147c5b2 by Victor Stinner in branch '2.7': bpo-37359: Add --cleanup option to python3 -m test (GH-14332) (GH-14333) https://github.com/python/cpython/commit/9d55bf440cd0b8b06509318d7676c0744147c5b2 --

[issue37359] test_regrtest: test_list_cases() fails on x86 Gentoo Installed with X 3.x

2019-06-24 Thread STINNER Victor
STINNER Victor added the comment: New changeset 9bbf4d7083a819cbcee2a6cd3df2802d4c50f734 by Victor Stinner in branch 'master': bpo-37359: Fix regrtest --cleanup (GH-14336) https://github.com/python/cpython/commit/9bbf4d7083a819cbcee2a6cd3df2802d4c50f734 -- _

[issue37359] test_regrtest: test_list_cases() fails on x86 Gentoo Installed with X 3.x

2019-06-24 Thread miss-islington
Change by miss-islington : -- pull_requests: +14157 pull_request: https://github.com/python/cpython/pull/14337 ___ Python tracker ___ __

[issue37359] test_regrtest: test_list_cases() fails on x86 Gentoo Installed with X 3.x

2019-06-24 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +14156 pull_request: https://github.com/python/cpython/pull/14336 ___ Python tracker ___ __

[issue37359] test_regrtest: test_list_cases() fails on x86 Gentoo Installed with X 3.x

2019-06-24 Thread STINNER Victor
STINNER Victor added the comment: New changeset 2ec4545ebe49c62fdc60b0cf627e3aabe1bca037 by Victor Stinner in branch '3.8': bpo-37359: Add --cleanup option to python3 -m test (GH-14332) (GH-14334) https://github.com/python/cpython/commit/2ec4545ebe49c62fdc60b0cf627e3aabe1bca037 --

[issue37359] test_regrtest: test_list_cases() fails on x86 Gentoo Installed with X 3.x

2019-06-24 Thread STINNER Victor
STINNER Victor added the comment: New changeset 20ad3310d4f3dec1318a85e66963581501eeb634 by Victor Stinner in branch '3.7': bpo-37359: Add --cleanup option to python3 -m test (GH-14332) (GH-14335) https://github.com/python/cpython/commit/20ad3310d4f3dec1318a85e66963581501eeb634 --

[issue37359] test_regrtest: test_list_cases() fails on x86 Gentoo Installed with X 3.x

2019-06-24 Thread STINNER Victor
STINNER Victor added the comment: I created https://github.com/python/buildmaster-config/pull/98 to cleanup tests in buildbots. -- ___ Python tracker ___

[issue37359] test_regrtest: test_list_cases() fails on x86 Gentoo Installed with X 3.x

2019-06-24 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +14155 pull_request: https://github.com/python/cpython/pull/14335 ___ Python tracker ___ __

[issue37359] test_regrtest: test_list_cases() fails on x86 Gentoo Installed with X 3.x

2019-06-24 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +14154 pull_request: https://github.com/python/cpython/pull/14334 ___ Python tracker ___ __

[issue37359] test_regrtest: test_list_cases() fails on x86 Gentoo Installed with X 3.x

2019-06-24 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +14153 pull_request: https://github.com/python/cpython/pull/14333 ___ Python tracker ___ __

[issue37359] test_regrtest: test_list_cases() fails on x86 Gentoo Installed with X 3.x

2019-06-24 Thread STINNER Victor
STINNER Victor added the comment: New changeset 47fbc4e45b35b3111e2d947a66490a43ac21d363 by Victor Stinner in branch 'master': bpo-37359: Add --cleanup option to python3 -m test (GH-14332) https://github.com/python/cpython/commit/47fbc4e45b35b3111e2d947a66490a43ac21d363 --

[issue37359] test_regrtest: test_list_cases() fails on x86 Gentoo Installed with X 3.x

2019-06-24 Thread STINNER Victor
Change by STINNER Victor : -- keywords: +patch pull_requests: +14152 stage: -> patch review pull_request: https://github.com/python/cpython/pull/14332 ___ Python tracker ___ _

[issue37359] test_regrtest: test_list_cases() fails on x86 Gentoo Installed with X 3.x

2019-06-22 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: Another failure: https://buildbot.python.org/all/#/builders/103/builds/2688/steps/6/logs/stdio == FAIL: test_list_cases (test.test_regrtest.ArgsTestCase) --

[issue37359] test_regrtest: test_list_cases() fails on x86 Gentoo Installed with X 3.x

2019-06-21 Thread STINNER Victor
STINNER Victor added the comment: Related change: commit 3c93153f7db5dd9b06f229e61978fd9199b3c097 Author: Victor Stinner Date: Tue May 14 15:49:16 2019 +0200 bpo-36915: regrtest always remove tempdir of worker processes (GH-13312) -- ___ Py

[issue37359] test_regrtest: test_list_cases() fails on x86 Gentoo Installed with X 3.x

2019-06-21 Thread STINNER Victor
New submission from STINNER Victor : The root issue is likely related to "RuntimeWarning: tests may fail, unable to create temporary directory '/buildbot/tmp/tmpdir/test_python_28144': [Errno 17] File exists". I don't know if a previous buildbot run forgot to remove this directory, or if it'