Issue 34997: test.test_logging.ConfigDictTest.test_out_of_order fails in x86 Gentoo Refleaks 3.x (original) (raw)

Issue34997

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.

This issue has been migrated to GitHub: https://github.com/python/cpython/issues/79178

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:07 admin set github: 79178
2018-10-16 14🔞22 pablogsal set status: open -> closedresolution: fixedstage: patch review -> resolved
2018-10-16 14🔞03 pablogsal set messages: +
2018-10-16 14:01:32 pablogsal set messages: +
2018-10-16 13:57:09 pablogsal set keywords: + patchstage: patch reviewpull_requests: + <pull%5Frequest9271>
2018-10-16 13:53:02 vstinner set messages: +
2018-10-16 13:51:37 vstinner set nosy: + vstinner
2018-10-16 13:22:31 pablogsal set messages: +
2018-10-16 13:14:04 pablogsal set messages: +
2018-10-16 13:09:35 pablogsal create