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

2009-11-03 Thread Stefan H. Holek
FWIW, Martijn is correct. Python 2.4 does not like values  2**31-1  
for list indexes, slices, e.a. even on 64 bit systems. I have disabled  
the respective test runs.

Stefan


On 01.11.2009, at 14:43, Martijn Pieters wrote:

 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.

--
Stefan H. Holek
ste...@epy.co.at




___
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-02 Thread Chris Withers
Andreas Jung wrote:
 I am going one step further and propose to support officially only
 Python 2.6

I thought that was Zope 2.13 with Zope 2.12 as a transition?

 (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.

I'm +0 on this, fwiw...

Chris

-- 
Simplistix - Content Management, Batch Processing  Python Consulting
- http://www.simplistix.co.uk
___
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-02 Thread Hanno Schlichting
On Sun, Nov 1, 2009 at 2:09 PM, Andreas Jung li...@zopyx.com wrote:
 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.

+1

For Plone 4 we will only support Python 2.6 and already make use of
2.6 features in a number of places.

Hanno
___
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 )


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

2009-10-31 Thread Zope Tests Summarizer
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

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


Tests passed OK
---

Subject: OK : Zope-2.10 Python-2.4.6 : Linux
From: Zope Tests
Date: Fri Oct 30 21:46:05 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-October/012920.html

Subject: OK : Zope-2.11 Python-2.4.6 : Linux
From: Zope Tests
Date: Fri Oct 30 21:48:05 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-October/012921.html

Subject: OK : Zope-2.12 Python-2.4.6 : Linux
From: Zope Tests
Date: Fri Oct 30 21:50:06 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-October/012922.html

Subject: OK : Zope-2.12 Python-2.6.2 : Linux
From: Zope Tests
Date: Fri Oct 30 21:54:06 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-October/012924.html

Subject: OK : Zope-trunk Python-2.6.2 : Linux
From: Zope Tests
Date: Fri Oct 30 21:58:07 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-October/012926.html

Subject: OK : Zope-trunk-alltests Python-2.6.2 : Linux
From: Zope Tests
Date: Fri Oct 30 22:00:07 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-October/012927.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-10-31 Thread Tres Seaver
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

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.

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

The failing test here is the 'over_the_wire.txt' one inside
zope.testing, which should be disabled (or removed altogether):  hitting
a third-party website from within automated test suites is both rude and
foolish.


Tres.
- --
===
Tres Seaver  +1 540-429-0999  tsea...@palladion.com
Palladion Software   Excellence by Designhttp://palladion.com
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iEYEARECAAYFAkrseZEACgkQ+gerLs4ltQ5mDwCeJiqOm1/Yn1wNbDlUUMX/xLYC
fDcAn3NgrOlWRHlOPVGpMhJftYxY7iAK
=fwJw
-END PGP SIGNATURE-

___
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 )


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

2009-05-08 Thread Zope Tests Summarizer
Summary of messages to the zope-tests list.
Period Thu May  7 12:00:00 2009 UTC to Fri May  8 12:00:00 2009 UTC.
There were 8 messages: 8 from Zope Tests.


Test failures
-

Subject: FAILED (errors=1) : Zope-trunk Python-2.4.6 : Linux
From: Zope Tests
Date: Thu May  7 20:49:20 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-May/011653.html

Subject: FAILED (errors=1) : Zope-trunk-alltests Python-2.4.6 : Linux
From: Zope Tests
Date: Thu May  7 20:55:25 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-May/011656.html


Tests passed OK
---

Subject: OK : Zope-2.10 Python-2.4.6 : Linux
From: Zope Tests
Date: Thu May  7 20:45:16 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-May/011651.html

Subject: OK : Zope-2.11 Python-2.4.6 : Linux
From: Zope Tests
Date: Thu May  7 20:47:20 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-May/011652.html

Subject: OK : Zope-trunk Python-2.5.4 : Linux
From: Zope Tests
Date: Thu May  7 20:51:23 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-May/011654.html

Subject: OK : Zope-trunk Python-2.6.1 : Linux
From: Zope Tests
Date: Thu May  7 20:53:25 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-May/011655.html

Subject: OK : Zope-trunk-alltests Python-2.5.4 : Linux
From: Zope Tests
Date: Thu May  7 20:57:26 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-May/011657.html

Subject: OK : Zope-trunk-alltests Python-2.6.1 : Linux
From: Zope Tests
Date: Thu May  7 20:59:27 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-May/011658.html

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


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

2009-04-16 Thread Zope Tests Summarizer
Summary of messages to the zope-tests list.
Period Wed Apr 15 12:00:00 2009 UTC to Thu Apr 16 12:00:00 2009 UTC.
There were 8 messages: 8 from Zope Tests.


Test failures
-

Subject: FAILED (failures=1) : Zope-trunk Python-2.4.6 : Linux
From: Zope Tests
Date: Wed Apr 15 20:52:43 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-April/011477.html

Subject: FAILED (failures=1) : Zope-trunk-alltests Python-2.4.6 : Linux
From: Zope Tests
Date: Wed Apr 15 20:58:47 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-April/011480.html


Tests passed OK
---

Subject: OK : Zope-2.10 Python-2.4.6 : Linux
From: Zope Tests
Date: Wed Apr 15 20:48:40 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-April/011475.html

Subject: OK : Zope-2.11 Python-2.4.6 : Linux
From: Zope Tests
Date: Wed Apr 15 20:50:43 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-April/011476.html

Subject: OK : Zope-trunk Python-2.5.4 : Linux
From: Zope Tests
Date: Wed Apr 15 20:54:43 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-April/011478.html

Subject: OK : Zope-trunk Python-2.6.1 : Linux
From: Zope Tests
Date: Wed Apr 15 20:56:46 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-April/011479.html

Subject: OK : Zope-trunk-alltests Python-2.5.4 : Linux
From: Zope Tests
Date: Wed Apr 15 21:00:47 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-April/011481.html

Subject: OK : Zope-trunk-alltests Python-2.6.1 : Linux
From: Zope Tests
Date: Wed Apr 15 21:02:47 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-April/011482.html

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


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

2009-04-15 Thread Zope Tests Summarizer
Summary of messages to the zope-tests list.
Period Tue Apr 14 12:00:00 2009 UTC to Wed Apr 15 12:00:00 2009 UTC.
There were 8 messages: 8 from Zope Tests.


Test failures
-

Subject: FAILED (failures=1) : Zope-trunk Python-2.4.6 : Linux
From: Zope Tests
Date: Tue Apr 14 20:50:37 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-April/011469.html

Subject: FAILED (failures=1) : Zope-trunk-alltests Python-2.4.6 : Linux
From: Zope Tests
Date: Tue Apr 14 20:56:37 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-April/011472.html


Tests passed OK
---

Subject: OK : Zope-2.10 Python-2.4.6 : Linux
From: Zope Tests
Date: Tue Apr 14 20:46:28 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-April/011467.html

Subject: OK : Zope-2.11 Python-2.4.6 : Linux
From: Zope Tests
Date: Tue Apr 14 20:48:37 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-April/011468.html

Subject: OK : Zope-trunk Python-2.5.4 : Linux
From: Zope Tests
Date: Tue Apr 14 20:52:37 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-April/011470.html

Subject: OK : Zope-trunk Python-2.6.1 : Linux
From: Zope Tests
Date: Tue Apr 14 20:54:37 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-April/011471.html

Subject: OK : Zope-trunk-alltests Python-2.5.4 : Linux
From: Zope Tests
Date: Tue Apr 14 20:58:37 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-April/011473.html

Subject: OK : Zope-trunk-alltests Python-2.6.1 : Linux
From: Zope Tests
Date: Tue Apr 14 21:00:38 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-April/011474.html

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


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

2009-04-14 Thread Zope Tests Summarizer
Summary of messages to the zope-tests list.
Period Mon Apr 13 12:00:00 2009 UTC to Tue Apr 14 12:00:00 2009 UTC.
There were 8 messages: 8 from Zope Tests.


Test failures
-

Subject: FAILED (failures=1) : Zope-trunk Python-2.4.6 : Linux
From: Zope Tests
Date: Mon Apr 13 21:00:09 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-April/011461.html

Subject: FAILED (failures=1) : Zope-trunk-alltests Python-2.4.6 : Linux
From: Zope Tests
Date: Mon Apr 13 21:06:11 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-April/011464.html


Tests passed OK
---

Subject: OK : Zope-2.10 Python-2.4.6 : Linux
From: Zope Tests
Date: Mon Apr 13 20:56:05 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-April/011459.html

Subject: OK : Zope-2.11 Python-2.4.6 : Linux
From: Zope Tests
Date: Mon Apr 13 20:58:06 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-April/011460.html

Subject: OK : Zope-trunk Python-2.5.4 : Linux
From: Zope Tests
Date: Mon Apr 13 21:02:10 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-April/011462.html

Subject: OK : Zope-trunk Python-2.6.1 : Linux
From: Zope Tests
Date: Mon Apr 13 21:04:10 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-April/011463.html

Subject: OK : Zope-trunk-alltests Python-2.5.4 : Linux
From: Zope Tests
Date: Mon Apr 13 21:08:11 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-April/011465.html

Subject: OK : Zope-trunk-alltests Python-2.6.1 : Linux
From: Zope Tests
Date: Mon Apr 13 21:10:11 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-April/011466.html

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


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

2009-04-04 Thread Zope Tests Summarizer
Summary of messages to the zope-tests list.
Period Fri Apr  3 12:00:00 2009 UTC to Sat Apr  4 12:00:00 2009 UTC.
There were 8 messages: 8 from Zope Tests.


Test failures
-

Subject: FAILED (failures=1) : Zope-trunk Python-2.6.1 : Linux
From: Zope Tests
Date: Fri Apr  3 20:53:14 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-April/011383.html

Subject: FAILED (failures=3, errors=1) : Zope-trunk-alltests Python-2.6.1 : 
Linux
From: Zope Tests
Date: Fri Apr  3 20:59:15 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-April/011386.html


Tests passed OK
---

Subject: OK : Zope-2.10 Python-2.4.6 : Linux
From: Zope Tests
Date: Fri Apr  3 20:45:09 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-April/011379.html

Subject: OK : Zope-2.11 Python-2.4.6 : Linux
From: Zope Tests
Date: Fri Apr  3 20:47:10 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-April/011380.html

Subject: OK : Zope-trunk Python-2.4.6 : Linux
From: Zope Tests
Date: Fri Apr  3 20:49:10 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-April/011381.html

Subject: OK : Zope-trunk Python-2.5.4 : Linux
From: Zope Tests
Date: Fri Apr  3 20:51:11 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-April/011382.html

Subject: OK : Zope-trunk-alltests Python-2.4.6 : Linux
From: Zope Tests
Date: Fri Apr  3 20:55:14 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-April/011384.html

Subject: OK : Zope-trunk-alltests Python-2.5.4 : Linux
From: Zope Tests
Date: Fri Apr  3 20:57:15 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-April/011385.html

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


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

2009-02-03 Thread Zope Tests Summarizer
Summary of messages to the zope-tests list.
Period Mon Feb  2 12:00:00 2009 UTC to Tue Feb  3 12:00:00 2009 UTC.
There were 8 messages: 8 from Zope Tests.


Test failures
-

Subject: FAILED (failures=7) : Zope-trunk Python-2.4.5 : Linux
From: Zope Tests
Date: Mon Feb  2 20:50:11 EST 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-February/011003.html

Subject: FAILED (failures=9) : Zope-trunk Python-2.5.4 : Linux
From: Zope Tests
Date: Mon Feb  2 20:51:41 EST 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-February/011004.html


Tests passed OK
---

Subject: OK : Zope-2.8 Python-2.3.7 : Linux
From: Zope Tests
Date: Mon Feb  2 20:44:08 EST 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-February/010999.html

Subject: OK : Zope-2.9 Python-2.4.5 : Linux
From: Zope Tests
Date: Mon Feb  2 20:45:40 EST 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-February/011000.html

Subject: OK : Zope-2.10 Python-2.4.5 : Linux
From: Zope Tests
Date: Mon Feb  2 20:47:10 EST 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-February/011001.html

Subject: OK : Zope-2.11 Python-2.4.5 : Linux
From: Zope Tests
Date: Mon Feb  2 20:48:40 EST 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-February/011002.html

Subject: OK : Zope[2.buildout]-trunk Python-2.4.5 : Linux
From: Zope Tests
Date: Mon Feb  2 20:53:12 EST 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-February/011005.html

Subject: OK : Zope[2.buildout]-trunk Python-2.5.4 : Linux
From: Zope Tests
Date: Mon Feb  2 20:54:44 EST 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-February/011006.html

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


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

2009-01-27 Thread Zope Tests Summarizer
Summary of messages to the zope-tests list.
Period Mon Jan 26 12:00:00 2009 UTC to Tue Jan 27 12:00:00 2009 UTC.
There were 8 messages: 8 from Zope Tests.


Test failures
-

Subject: FAILED (failures=1, errors=29) : Zope[2.buildout]-trunk Python-2.4.5 : 
Linux
From: Zope Tests
Date: Mon Jan 26 20:56:12 EST 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-January/010949.html

Subject: FAILED (failures=1, errors=29) : Zope[2.buildout]-trunk Python-2.5.4 : 
Linux
From: Zope Tests
Date: Mon Jan 26 20:57:42 EST 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-January/010950.html


Tests passed OK
---

Subject: OK : Zope-2.8 Python-2.3.7 : Linux
From: Zope Tests
Date: Mon Jan 26 20:47:11 EST 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-January/010943.html

Subject: OK : Zope-2.9 Python-2.4.5 : Linux
From: Zope Tests
Date: Mon Jan 26 20:48:41 EST 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-January/010944.html

Subject: OK : Zope-2.10 Python-2.4.5 : Linux
From: Zope Tests
Date: Mon Jan 26 20:50:11 EST 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-January/010945.html

Subject: OK : Zope-2.11 Python-2.4.5 : Linux
From: Zope Tests
Date: Mon Jan 26 20:51:42 EST 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-January/010946.html

Subject: OK : Zope-trunk Python-2.4.5 : Linux
From: Zope Tests
Date: Mon Jan 26 20:53:12 EST 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-January/010947.html

Subject: OK : Zope-trunk Python-2.5.4 : Linux
From: Zope Tests
Date: Mon Jan 26 20:54:42 EST 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-January/010948.html

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


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

2009-01-21 Thread Hanno Schlichting
Tres Seaver wrote:
 Zope Tests Summarizer wrote:
 Summary of messages to the zope-tests list.
 Period Mon Jan 19 12:00:00 2009 UTC to Tue Jan 20 12:00:00 2009 UTC.
 There were 8 messages: 8 from Zope Tests.
 
 Test failures
 -
 
 Subject: FAILED (failures=2) : Zope[2.buildout]-trunk Python-2.4.5 : Linux
 From: Zope Tests
 Date: Mon Jan 19 20:57:35 EST 2009
 URL: http://mail.zope.org/pipermail/zope-tests/2009-January/010893.html
 
 Subject: FAILED (failures=2) : Zope[2.buildout]-trunk Python-2.5.2 : Linux
 From: Zope Tests
 Date: Mon Jan 19 20:58:35 EST 2009
 URL: http://mail.zope.org/pipermail/zope-tests/2009-January/010894.html
 
 Hmm, both failures in tests related to reSTX:  could this be due to
 upgrading docutils from 0.4 to 0.5?

Yes, probably.

I reverted to docutils 0.4 now, as I don't have time to follow up on
these before the weekend.

Hanno

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


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

2009-01-20 Thread Zope Tests Summarizer
Summary of messages to the zope-tests list.
Period Mon Jan 19 12:00:00 2009 UTC to Tue Jan 20 12:00:00 2009 UTC.
There were 8 messages: 8 from Zope Tests.


Test failures
-

Subject: FAILED (failures=2) : Zope[2.buildout]-trunk Python-2.4.5 : Linux
From: Zope Tests
Date: Mon Jan 19 20:57:35 EST 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-January/010893.html

Subject: FAILED (failures=2) : Zope[2.buildout]-trunk Python-2.5.2 : Linux
From: Zope Tests
Date: Mon Jan 19 20:58:35 EST 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-January/010894.html


Tests passed OK
---

Subject: OK : Zope-2.8 Python-2.3.7 : Linux
From: Zope Tests
Date: Mon Jan 19 20:51:30 EST 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-January/010887.html

Subject: OK : Zope-2.9 Python-2.4.5 : Linux
From: Zope Tests
Date: Mon Jan 19 20:52:30 EST 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-January/010888.html

Subject: OK : Zope-2.10 Python-2.4.5 : Linux
From: Zope Tests
Date: Mon Jan 19 20:53:30 EST 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-January/010889.html

Subject: OK : Zope-2.11 Python-2.4.5 : Linux
From: Zope Tests
Date: Mon Jan 19 20:54:32 EST 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-January/010890.html

Subject: OK : Zope-trunk Python-2.4.5 : Linux
From: Zope Tests
Date: Mon Jan 19 20:55:32 EST 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-January/010891.html

Subject: OK : Zope-trunk Python-2.5.2 : Linux
From: Zope Tests
Date: Mon Jan 19 20:56:32 EST 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-January/010892.html

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


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

2009-01-20 Thread Tres Seaver
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Zope Tests Summarizer wrote:
 Summary of messages to the zope-tests list.
 Period Mon Jan 19 12:00:00 2009 UTC to Tue Jan 20 12:00:00 2009 UTC.
 There were 8 messages: 8 from Zope Tests.
 
 
 Test failures
 -
 
 Subject: FAILED (failures=2) : Zope[2.buildout]-trunk Python-2.4.5 : Linux
 From: Zope Tests
 Date: Mon Jan 19 20:57:35 EST 2009
 URL: http://mail.zope.org/pipermail/zope-tests/2009-January/010893.html
 
 Subject: FAILED (failures=2) : Zope[2.buildout]-trunk Python-2.5.2 : Linux
 From: Zope Tests
 Date: Mon Jan 19 20:58:35 EST 2009
 URL: http://mail.zope.org/pipermail/zope-tests/2009-January/010894.html

Hmm, both failures in tests related to reSTX:  could this be due to
upgrading docutils from 0.4 to 0.5?



Tres.
- --
===
Tres Seaver  +1 540-429-0999  tsea...@palladion.com
Palladion Software   Excellence by Designhttp://palladion.com
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFJdp7c+gerLs4ltQ4RAtrtAKChFyhk0VBGKGODKvfHh4dtED3Q5gCfUHf7
o8fDQRieVRiRFJ74qHIpVuM=
=XZkj
-END PGP SIGNATURE-

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


[Zope-dev] Zope tests: 6 OK, 2 Failed

2006-01-16 Thread Zope tests summarizer
Summary of messages to the zope-tests list.
Period Sun Jan 15 12:01:02 2006 UTC to Mon Jan 16 12:01:02 2006 UTC.
There were 8 messages: 8 from Zope Unit Tests.


Test failures
-

Subject: FAILED : Zope-2_9-branch Python-2.4.2 : Linux
From: Zope Unit Tests
Date: Sun Jan 15 21:10:28 EST 2006
URL: http://mail.zope.org/pipermail/zope-tests/2006-January/004024.html

Subject: FAILED : Zope-trunk Python-2.4.2 : Linux
From: Zope Unit Tests
Date: Sun Jan 15 21:11:58 EST 2006
URL: http://mail.zope.org/pipermail/zope-tests/2006-January/004025.html


Tests passed OK
---

Subject: OK : Zope-2_6-branch Python-2.1.3 : Linux
From: Zope Unit Tests
Date: Sun Jan 15 21:01:27 EST 2006
URL: http://mail.zope.org/pipermail/zope-tests/2006-January/004018.html

Subject: OK : Zope-2_6-branch Python-2.3.5 : Linux
From: Zope Unit Tests
Date: Sun Jan 15 21:02:57 EST 2006
URL: http://mail.zope.org/pipermail/zope-tests/2006-January/004019.html

Subject: OK : Zope-2_7-branch Python-2.3.5 : Linux
From: Zope Unit Tests
Date: Sun Jan 15 21:04:27 EST 2006
URL: http://mail.zope.org/pipermail/zope-tests/2006-January/004020.html

Subject: OK : Zope-2_7-branch Python-2.4.2 : Linux
From: Zope Unit Tests
Date: Sun Jan 15 21:05:57 EST 2006
URL: http://mail.zope.org/pipermail/zope-tests/2006-January/004021.html

Subject: OK : Zope-2_8-branch Python-2.3.5 : Linux
From: Zope Unit Tests
Date: Sun Jan 15 21:07:27 EST 2006
URL: http://mail.zope.org/pipermail/zope-tests/2006-January/004022.html

Subject: OK : Zope-2_8-branch Python-2.4.2 : Linux
From: Zope Unit Tests
Date: Sun Jan 15 21:08:58 EST 2006
URL: http://mail.zope.org/pipermail/zope-tests/2006-January/004023.html

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


[Zope-dev] Zope tests: 6 OK, 2 Failed

2006-01-14 Thread Zope tests summarizer
Summary of messages to the zope-tests list.
Period Fri Jan 13 12:01:01 2006 UTC to Sat Jan 14 12:01:01 2006 UTC.
There were 8 messages: 8 from Zope Unit Tests.


Test failures
-

Subject: FAILED : Zope-2_9-branch Python-2.4.2 : Linux
From: Zope Unit Tests
Date: Fri Jan 13 21:10:37 EST 2006
URL: http://mail.zope.org/pipermail/zope-tests/2006-January/004008.html

Subject: FAILED : Zope-trunk Python-2.4.2 : Linux
From: Zope Unit Tests
Date: Fri Jan 13 21:12:07 EST 2006
URL: http://mail.zope.org/pipermail/zope-tests/2006-January/004009.html


Tests passed OK
---

Subject: OK : Zope-2_6-branch Python-2.1.3 : Linux
From: Zope Unit Tests
Date: Fri Jan 13 21:01:32 EST 2006
URL: http://mail.zope.org/pipermail/zope-tests/2006-January/004002.html

Subject: OK : Zope-2_6-branch Python-2.3.5 : Linux
From: Zope Unit Tests
Date: Fri Jan 13 21:03:06 EST 2006
URL: http://mail.zope.org/pipermail/zope-tests/2006-January/004003.html

Subject: OK : Zope-2_7-branch Python-2.3.5 : Linux
From: Zope Unit Tests
Date: Fri Jan 13 21:04:36 EST 2006
URL: http://mail.zope.org/pipermail/zope-tests/2006-January/004004.html

Subject: OK : Zope-2_7-branch Python-2.4.2 : Linux
From: Zope Unit Tests
Date: Fri Jan 13 21:06:06 EST 2006
URL: http://mail.zope.org/pipermail/zope-tests/2006-January/004005.html

Subject: OK : Zope-2_8-branch Python-2.3.5 : Linux
From: Zope Unit Tests
Date: Fri Jan 13 21:07:36 EST 2006
URL: http://mail.zope.org/pipermail/zope-tests/2006-January/004006.html

Subject: OK : Zope-2_8-branch Python-2.4.2 : Linux
From: Zope Unit Tests
Date: Fri Jan 13 21:09:07 EST 2006
URL: http://mail.zope.org/pipermail/zope-tests/2006-January/004007.html

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