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_uuid fails on OS X Tiger
Type: Stage: resolved
Components: macOS, Tests Versions: Python 3.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: benjamin.peterson, ned.deily, ronaldoussoren, vstinner
Priority: normal Keywords:

Created on 2017-03-27 21:05 by vstinner, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 971 merged vstinner, 2017-04-03 11:05
Messages (5)
msg290652 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2017-03-27 21:05
http://buildbot.python.org/all/builders/x86%20Tiger%203.x/builds/363/steps/test/logs/stdio

======================================================================
FAIL: test_uuid1_safe (test.test_uuid.TestUUID)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/Users/db3l/buildarea/3.x.bolen-tiger/build/Lib/test/test_uuid.py", line 351, in test_uuid1_safe
    self.assertNotEqual(u.is_safe, uuid.SafeUUID.unknown)
AssertionError: <SafeUUID.unknown: None> == <SafeUUID.unknown: None>

According to Ned Deily, the test started to fail with the the commit 0b8432538acf45d7a605fe68648b4712e8d9cee3.
PR: https://github.com/python/cpython/pull/388

See also the issue #29915 (OS X Tiger).
msg291063 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2017-04-03 11:00
Ping. Buildbot is still failing.
msg291064 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2017-04-03 11:05
I proposed the most obvious fix: skip the test on OS X Tiger, see attached PR.
msg291875 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2017-04-19 11:01
New changeset c209b70d610da50a844a3c10f37d6183bade3446 by Victor Stinner in branch 'master':
bpo-29925: Skip test_uuid1_safe() on OS X Tiger (#971)
https://github.com/python/cpython/commit/c209b70d610da50a844a3c10f37d6183bade3446
msg292884 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2017-05-03 10:35
test_uuid pass on x86 Tiger 3.6 and x86 Tiger 3.x, I close the issue.
History
Date User Action Args
2022-04-11 14:58:44adminsetgithub: 74111
2017-05-03 10:35:44vstinnersetstatus: open -> closed
resolution: fixed
messages: + msg292884

stage: resolved
2017-04-19 11:01:06vstinnersetmessages: + msg291875
2017-04-03 11:05:48vstinnersetmessages: + msg291064
2017-04-03 11:05:04vstinnersetpull_requests: + pull_request1148
2017-04-03 11:00:28vstinnersetmessages: + msg291063
2017-03-27 21:05:46vstinnercreate