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.test_logging.ConfigDictTest.test_out_of_order fails in x86 Gentoo Refleaks 3.x
Type: behavior Stage: resolved
Components: Tests Versions: Python 3.8
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: pablogsal Nosy List: pablogsal, vstinner
Priority: normal Keywords: patch

Created on 2018-10-16 13:09 by pablogsal, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 9913 merged pablogsal, 2018-10-16 13:57
Messages (6)
msg327825 - (view) Author: Pablo Galindo Salgado (pablogsal) * (Python committer) Date: 2018-10-16 13:09
When running the test_logging with the huntleaks option (-R), test_out_of_order fails:

======================================================================
FAIL: test_out_of_order (test.test_logging.ConfigDictTest)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/buildbot/buildarea/cpython/3.x.ware-gentoo-x86.refleak/build/Lib/test/test_logging.py", line 3278, in test_out_of_order
    self.assertRaises(ValueError, self.apply_config, self.out_of_order)
AssertionError: ValueError not raised by apply_config
----------------------------------------------------------------------

https://buildbot.python.org/all/#/builders/1/builds/377/steps/4/logs/stdio
msg327826 - (view) Author: Pablo Galindo Salgado (pablogsal) * (Python committer) Date: 2018-10-16 13:14
I'm working on this issue.
msg327827 - (view) Author: Pablo Galindo Salgado (pablogsal) * (Python committer) Date: 2018-10-16 13:22
Bisecting shows that 18fb1fb943b7dbd7f8a76017ee2a67ef13effb85 is the possible culprit.
msg327829 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2018-10-16 13:53
I suggest to revert the change if you fails to fix it quickly.
msg327831 - (view) Author: Pablo Galindo Salgado (pablogsal) * (Python committer) Date: 2018-10-16 14:01
I opened PR 9913 to fix it ;)
msg327834 - (view) Author: Pablo Galindo Salgado (pablogsal) * (Python committer) Date: 2018-10-16 14:18
New changeset 137b0632dccb992ca11e9445142fb33a29c33a51 by Pablo Galindo in branch 'master':
bpo-34997: Fix test_logging.ConfigDictTest.test_out_of_order (GH-9913)
https://github.com/python/cpython/commit/137b0632dccb992ca11e9445142fb33a29c33a51
History
Date User Action Args
2022-04-11 14:59:07adminsetgithub: 79178
2018-10-16 14:18:22pablogsalsetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2018-10-16 14:18:03pablogsalsetmessages: + msg327834
2018-10-16 14:01:32pablogsalsetmessages: + msg327831
2018-10-16 13:57:09pablogsalsetkeywords: + patch
stage: patch review
pull_requests: + pull_request9271
2018-10-16 13:53:02vstinnersetmessages: + msg327829
2018-10-16 13:51:37vstinnersetnosy: + vstinner
2018-10-16 13:22:31pablogsalsetmessages: + msg327827
2018-10-16 13:14:04pablogsalsetmessages: + msg327826
2018-10-16 13:09:35pablogsalcreate