[Zope-dev] Zope Tests: 3 OK, 3 Failed

2008-12-08 Thread Zope Tests Summarizer
Summary of messages to the zope-tests list.
Period Sun Dec  7 12:00:00 2008 UTC to Mon Dec  8 12:00:00 2008 UTC.
There were 6 messages: 6 from Zope Tests.


Test failures
-

Subject: FAILED (failures=7) : Zope-2.11 Python-2.4.5 : Linux
From: Zope Tests
Date: Sun Dec  7 20:29:11 EST 2008
URL: http://mail.zope.org/pipermail/zope-tests/2008-December/010612.html

Subject: FAILED (failures=2) : Zope-trunk Python-2.4.5 : Linux
From: Zope Tests
Date: Sun Dec  7 20:30:42 EST 2008
URL: http://mail.zope.org/pipermail/zope-tests/2008-December/010613.html

Subject: FAILED (failures=2) : Zope-trunk Python-2.5.2 : Linux
From: Zope Tests
Date: Sun Dec  7 20:32:12 EST 2008
URL: http://mail.zope.org/pipermail/zope-tests/2008-December/010614.html


Tests passed OK
---

Subject: OK : Zope-2.8 Python-2.3.7 : Linux
From: Zope Tests
Date: Sun Dec  7 20:24:41 EST 2008
URL: http://mail.zope.org/pipermail/zope-tests/2008-December/010609.html

Subject: OK : Zope-2.9 Python-2.4.5 : Linux
From: Zope Tests
Date: Sun Dec  7 20:26:11 EST 2008
URL: http://mail.zope.org/pipermail/zope-tests/2008-December/010610.html

Subject: OK : Zope-2.10 Python-2.4.5 : Linux
From: Zope Tests
Date: Sun Dec  7 20:27:41 EST 2008
URL: http://mail.zope.org/pipermail/zope-tests/2008-December/010611.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: 3 OK, 3 Failed

2008-12-08 Thread Tres Seaver
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Zope Tests Summarizer wrote:
 Summary of messages to the zope-tests list.
 Period Sun Dec  7 12:00:00 2008 UTC to Mon Dec  8 12:00:00 2008 UTC.
 There were 6 messages: 6 from Zope Tests.
 
 
 Test failures
 -
 
 Subject: FAILED (failures=7) : Zope-2.11 Python-2.4.5 : Linux
 From: Zope Tests
 Date: Sun Dec  7 20:29:11 EST 2008
 URL: http://mail.zope.org/pipermail/zope-tests/2008-December/010612.html

I have fixed this one as follows:

 - I upgraded the mechanize external to the vendor-imported 0.10
   version.

 - I upgraded the 'zope.testbrowser' external to the Zope2-specific
   version which suppresses the 'over-the-wire.txt' tests (which should
   *never* run automatically, BTW).

 - I updated 'Products.Five.testbrowser' to strip out the '_seek'
   handler, which was never part of the relased version of 'mechanize'
   on which our internal fork was based.

 Subject: FAILED (failures=2) : Zope-trunk Python-2.4.5 : Linux
 From: Zope Tests
 Date: Sun Dec  7 20:30:42 EST 2008
 URL: http://mail.zope.org/pipermail/zope-tests/2008-December/010613.html
 
 Subject: FAILED (failures=2) : Zope-trunk Python-2.5.2 : Linux
 From: Zope Tests
 Date: Sun Dec  7 20:32:12 EST 2008
 URL: http://mail.zope.org/pipermail/zope-tests/2008-December/010614.html

For the trunk I have spelunked the 'zope.testbrowser' failure, which is
due to a difference between Zope2 and Zope3 requests:  the Z3 versions
have empty 'processInputs' methods, while the Z2 version drains the
input stream for non-GET methods, creating a cgi.FieldStorage.  I would
just as soon disable the test under Zope2 (e.g., with something like the
attached patch), rather than care about the different semantics.  I
could create another Z2-specific tag for this, if needed.

I still don't have a clue why the 'aqlegacy_ftest.txt' tests fail.  Ideas?



Tres.
- --
===
Tres Seaver  +1 540-429-0999  [EMAIL PROTECTED]
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

iD8DBQFJPVT9+gerLs4ltQ4RAgWBAJ9VSV1vaC32Mj3EIy+fy8SpszLnJACeL+Pp
sjhqfFsU6QDQ4dyZuSGDzbc=
=Ecve
-END PGP SIGNATURE-
Index: zope/testbrowser/tests.py
===
--- zope/testbrowser/tests.py	(revision 93787)
+++ zope/testbrowser/tests.py	(working copy)
@@ -391,6 +391,14 @@
 
 def test_suite():
 flags = doctest.NORMALIZE_WHITESPACE | doctest.ELLIPSIS
+try:
+# The doctests make Zope3-specifc assumptions about how the
+# publisher works;  skip them if running inside a Zope2 environment
+import ZPublisher
+except ImportError:
+pass
+else:
+return unittest.TestSuite()
 
 readme = FunctionalDocFileSuite('README.txt', optionflags=flags,
 checker=checker)
___
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: 3 OK, 3 Failed

2008-12-07 Thread Zope Tests Summarizer
Summary of messages to the zope-tests list.
Period Sat Dec  6 12:00:00 2008 UTC to Sun Dec  7 12:00:00 2008 UTC.
There were 6 messages: 6 from Zope Tests.


Test failures
-

Subject: FAILED (failures=7) : Zope-2.11 Python-2.4.5 : Linux
From: Zope Tests
Date: Sat Dec  6 20:28:58 EST 2008
URL: http://mail.zope.org/pipermail/zope-tests/2008-December/010606.html

Subject: FAILED (failures=2) : Zope-trunk Python-2.4.5 : Linux
From: Zope Tests
Date: Sat Dec  6 20:30:28 EST 2008
URL: http://mail.zope.org/pipermail/zope-tests/2008-December/010607.html

Subject: FAILED (failures=2) : Zope-trunk Python-2.5.2 : Linux
From: Zope Tests
Date: Sat Dec  6 20:31:58 EST 2008
URL: http://mail.zope.org/pipermail/zope-tests/2008-December/010608.html


Tests passed OK
---

Subject: OK : Zope-2.8 Python-2.3.7 : Linux
From: Zope Tests
Date: Sat Dec  6 20:24:27 EST 2008
URL: http://mail.zope.org/pipermail/zope-tests/2008-December/010603.html

Subject: OK : Zope-2.9 Python-2.4.5 : Linux
From: Zope Tests
Date: Sat Dec  6 20:25:57 EST 2008
URL: http://mail.zope.org/pipermail/zope-tests/2008-December/010604.html

Subject: OK : Zope-2.10 Python-2.4.5 : Linux
From: Zope Tests
Date: Sat Dec  6 20:27:27 EST 2008
URL: http://mail.zope.org/pipermail/zope-tests/2008-December/010605.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: 3 OK, 3 Failed

2008-12-06 Thread Zope Tests Summarizer
Summary of messages to the zope-tests list.
Period Fri Dec  5 12:00:00 2008 UTC to Sat Dec  6 12:00:00 2008 UTC.
There were 6 messages: 6 from Zope Tests.


Test failures
-

Subject: FAILED (failures=7) : Zope-2.11 Python-2.4.5 : Linux
From: Zope Tests
Date: Fri Dec  5 20:36:57 EST 2008
URL: http://mail.zope.org/pipermail/zope-tests/2008-December/010600.html

Subject: FAILED (failures=2) : Zope-trunk Python-2.4.5 : Linux
From: Zope Tests
Date: Fri Dec  5 20:38:28 EST 2008
URL: http://mail.zope.org/pipermail/zope-tests/2008-December/010601.html

Subject: FAILED (failures=2) : Zope-trunk Python-2.5.2 : Linux
From: Zope Tests
Date: Fri Dec  5 20:39:58 EST 2008
URL: http://mail.zope.org/pipermail/zope-tests/2008-December/010602.html


Tests passed OK
---

Subject: OK : Zope-2.8 Python-2.3.7 : Linux
From: Zope Tests
Date: Fri Dec  5 20:32:27 EST 2008
URL: http://mail.zope.org/pipermail/zope-tests/2008-December/010597.html

Subject: OK : Zope-2.9 Python-2.4.5 : Linux
From: Zope Tests
Date: Fri Dec  5 20:33:57 EST 2008
URL: http://mail.zope.org/pipermail/zope-tests/2008-December/010598.html

Subject: OK : Zope-2.10 Python-2.4.5 : Linux
From: Zope Tests
Date: Fri Dec  5 20:35:27 EST 2008
URL: http://mail.zope.org/pipermail/zope-tests/2008-December/010599.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: 3 OK, 3 Failed, 2 Unknown

2005-12-15 Thread Zope tests summarizer
Summary of messages to the zope-tests list.
Period Wed Dec 14 12:01:01 2005 UTC to Thu Dec 15 12:01:01 2005 UTC.
There were 8 messages: 8 from Zope Unit Tests.


Test failures
-

Subject: FAILED (failures=1) : Zope-2_7-branch Python-2.4.2 :
Linux
From: Zope Unit Tests
Date: Wed Dec 14 22:13:22 EST 2005
URL: http://mail.zope.org/pipermail/zope-tests/2005-December/003797.html

Subject: FAILED : Zope-2_9-branch Python-2.4.2 : Linux
From: Zope Unit Tests
Date: Wed Dec 14 22:17:52 EST 2005
URL: http://mail.zope.org/pipermail/zope-tests/2005-December/003800.html

Subject: FAILED : Zope-trunk Python-2.4.2 : Linux
From: Zope Unit Tests
Date: Wed Dec 14 22:19:23 EST 2005
URL: http://mail.zope.org/pipermail/zope-tests/2005-December/003801.html


Unknown
---

Subject: UNKNOWN : Zope-2_8-branch Python-2.3.5 : Linux
From: Zope Unit Tests
Date: Wed Dec 14 22:14:52 EST 2005
URL: http://mail.zope.org/pipermail/zope-tests/2005-December/003798.html

Subject: UNKNOWN : Zope-2_8-branch Python-2.4.2 : Linux
From: Zope Unit Tests
Date: Wed Dec 14 22:16:22 EST 2005
URL: http://mail.zope.org/pipermail/zope-tests/2005-December/003799.html


Tests passed OK
---

Subject: OK : Zope-2_6-branch Python-2.1.3 : Linux
From: Zope Unit Tests
Date: Wed Dec 14 22:08:52 EST 2005
URL: http://mail.zope.org/pipermail/zope-tests/2005-December/003794.html

Subject: OK : Zope-2_6-branch Python-2.3.5 : Linux
From: Zope Unit Tests
Date: Wed Dec 14 22:10:22 EST 2005
URL: http://mail.zope.org/pipermail/zope-tests/2005-December/003795.html

Subject: OK : Zope-2_7-branch Python-2.3.5 : Linux
From: Zope Unit Tests
Date: Wed Dec 14 22:11:52 EST 2005
URL: http://mail.zope.org/pipermail/zope-tests/2005-December/003796.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 )