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_deque failure on Gentoo and OpenIndiana buildbots on 2.7
Type: behavior Stage:
Components: Extension Modules Versions: Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: rhettinger Nosy List: rhettinger, serhiy.storchaka, zach.ware
Priority: normal Keywords:

Created on 2015-11-12 19:37 by serhiy.storchaka, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (2)
msg254548 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2015-11-12 19:37
http://buildbot.python.org/all/builders/x86%20OpenIndiana%202.7/builds/3104/steps/test/logs/stdio
http://buildbot.python.org/all/builders/x86%20Gentoo%20Non-Debug%20with%20X%202.7/builds/107/steps/test/logs/stdio
======================================================================
FAIL: test_basics (test.test_deque.TestBasic)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/buildbot/buildarea/2.7.ware-gentoo-x86/build/Lib/test/test_deque.py", line 38, in test_basics
    self.assertEqual(list(d), range(-200, 400))
AssertionError: Lists differ: [-200, -199, -198, -197, -196,... != [-200, -199, -198, -197, -196,...

First differing element 200:
-5125
0

First list contains 125 additional elements.
First extra element 600:
275

Diff is 6032 characters long. Set self.maxDiff to None to see it.

----------------------------------------------------------------------

On other buildbots the test is passed, and I can't reproduce the failure locally.
msg254713 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2015-11-16 05:55
I believe this was fixed by changesets a2a518b6ded4 and d920b09d22ce . The buildbots show green for the latest build.
History
Date User Action Args
2022-04-11 14:58:23adminsetgithub: 69797
2015-11-16 05:55:22rhettingersetstatus: open -> closed
resolution: fixed
messages: + msg254713
2015-11-15 21:55:37rhettingersetassignee: rhettinger
2015-11-12 19:39:40zach.waresetnosy: + zach.ware

title: test_deque failure on Gentu and OpenIndiana buildbots on 2.7 -> test_deque failure on Gentoo and OpenIndiana buildbots on 2.7
2015-11-12 19:37:35serhiy.storchakacreate