[Zope-dev] Zope Tests: 7 OK, 1 Failed

2009-11-01 Thread Zope Tests Summarizer
Summary of messages to the zope-tests list.
Period Sat Oct 31 13:00:00 2009 UTC to Sun Nov  1 13:00:00 2009 UTC.
There were 8 messages: 8 from Zope Tests.


Test failures
-

Subject: FAILED (failures=1) : Zope-2.12-alltests Python-2.4.6 : Linux
From: Zope Tests
Date: Sat Oct 31 21:51:55 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-October/012931.html


Tests passed OK
---

Subject: OK : Zope-2.10 Python-2.4.6 : Linux
From: Zope Tests
Date: Sat Oct 31 21:45:54 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-October/012928.html

Subject: OK : Zope-2.11 Python-2.4.6 : Linux
From: Zope Tests
Date: Sat Oct 31 21:47:55 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-October/012929.html

Subject: OK : Zope-2.12 Python-2.4.6 : Linux
From: Zope Tests
Date: Sat Oct 31 21:49:55 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-October/012930.html

Subject: OK : Zope-2.12 Python-2.6.2 : Linux
From: Zope Tests
Date: Sat Oct 31 21:53:55 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-October/012932.html

Subject: OK : Zope-2.12-alltests Python-2.6.2 : Linux
From: Zope Tests
Date: Sat Oct 31 21:55:56 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-October/012933.html

Subject: OK : Zope-trunk Python-2.6.2 : Linux
From: Zope Tests
Date: Sat Oct 31 21:57:56 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-October/012934.html

Subject: OK : Zope-trunk-alltests Python-2.6.2 : Linux
From: Zope Tests
Date: Sat Oct 31 21:59:56 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-October/012935.html

___
Zope-Dev maillist  -  Zope-Dev@zope.org
https://mail.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - 
 https://mail.zope.org/mailman/listinfo/zope-announce
 https://mail.zope.org/mailman/listinfo/zope )


Re: [Zope-dev] Zope Tests: 6 OK, 2 Failed

2009-11-01 Thread Andreas Jung
Am 31.10.09 18:53, schrieb Tres Seaver:
 Zope Tests Summarizer wrote:
  Summary of messages to the zope-tests list.
  Period Fri Oct 30 13:00:00 2009 UTC to Sat Oct 31 13:00:00 2009 UTC.
  There were 8 messages: 8 from Zope Tests.


  Test failures
  -

  Subject: FAILED (failures=1) : Zope-2.12-alltests Python-2.4.6 : Linux
  From: Zope Tests
  Date: Fri Oct 30 21:52:06 EDT 2009
  URL: http://mail.zope.org/pipermail/zope-tests/2009-October/012923.html

 I can't reproduce this failure when running the Acquisition 2.12.4 tests
 with Python 2.4 on my machine.

I can reproduce this error with Python 2.4 on 64 bit Linux.

However I would not care much about it since 2.4 is basically unsupported.

I am going one step further and propose to support officially only
Python 2.6
(and inofficially Python 2.5). Why? Right now it is possible writing
Zope 2.12
compatible add-ons that might use Python 2.6 feature. Another using running
Zope w/ Python 2.5 or 2.4 will not be able to run this particular
add-on. So I am inclined to limit the official support to Python 2.6 only.

Thoughts?

Andreas


attachment: lists.vcf___
Zope-Dev maillist  -  Zope-Dev@zope.org
https://mail.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - 
 https://mail.zope.org/mailman/listinfo/zope-announce
 https://mail.zope.org/mailman/listinfo/zope )


Re: [Zope-dev] Zope Tests: 6 OK, 2 Failed

2009-11-01 Thread Martijn Pieters
2009/10/31 Tres Seaver tsea...@palladion.com:
 I can't reproduce this failure when running the Acquisition 2.12.4 tests
 with Python 2.4 on my machine.

This is python 2.4 on 64-bit linux. I bet it's because of:

  typedef int Py_ssize_t;

and sys.maxint overflows to -1 with that definition. I suspect that
all open-ended slicing ops in Python C extensions are borken in python
2.4, because it doesn't have Py_ssize_t.

-- 
Martijn Pieters
___
Zope-Dev maillist  -  Zope-Dev@zope.org
https://mail.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - 
 https://mail.zope.org/mailman/listinfo/zope-announce
 https://mail.zope.org/mailman/listinfo/zope )