Re: [Zope-dev] zope-tests - FAILED: 5, OK: 19

2013-01-18 Thread Maurits van Rees

Op 16-01-13 18:47, Tres Seaver schreef:

[3]FAILED  winbot / z3c.ptcompat_py_265_32
https://mail.zope.org/pipermail/zope-tests/2013-January/071440.html


Same error related to the recent zope.pagetemplates changes.


This is a test that passes with standard zope.pagetemplates, but fails 
in combination with Chameleon.  It is in a recursion test that has been 
added in zope.pagetemplate 4.0.0.


I have now added a bin/testcompat script in the zope.pagetemplates 
buildout to test with z3c.pt(compat) plus Chameleon.


The expected output for this test is:

!-- See https://bugs.launchpad.net/zope.pagetemplate/+bug/732972 --
ul
 liroot/li
 li
 ul
 lifirst/li
/ul
 /li
 li
 ul
 lisecond/li
/ul
 /li
/ul

The real output is:

!-- See https://bugs.launchpad.net/zope.pagetemplate/+bug/732972 --
ul
 liroot/li
 li
 ul
 lifirst/li

/ul
 /li
 li
 ul
 lisecond/li

/ul
 /li
/ul

The difference is that the two inner '/ul' get an extra line before 
them with a single space character.


I have tried a few changes in the test template to see if that would 
result in the output html being the same with and without Chameleon, but 
that did not work.


Possibly this needs a change not in zope.pagetemplate but in Chameleon 
or one of the other packages.



--
Maurits van Rees: http://maurits.vanrees.org/
Zest Software: http://zestsoftware.nl

___
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 - FAILED: 5, OK: 19

2013-01-18 Thread Tres Seaver
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 01/18/2013 08:58 AM, Maurits van Rees wrote:
 Op 16-01-13 18:47, Tres Seaver schreef:
 [3]FAILED  winbot / z3c.ptcompat_py_265_32 
 https://mail.zope.org/pipermail/zope-tests/2013-January/071440.html


 
Same error related to the recent zope.pagetemplates changes.
 
 This is a test that passes with standard zope.pagetemplates, but fails
  in combination with Chameleon.  It is in a recursion test that has
 been added in zope.pagetemplate 4.0.0.
 
 I have now added a bin/testcompat script in the zope.pagetemplates 
 buildout to test with z3c.pt(compat) plus Chameleon.
 
 The expected output for this test is:
 
 !-- See https://bugs.launchpad.net/zope.pagetemplate/+bug/732972 -- 
 ul liroot/li li ul lifirst/li /ul /li li ul 
 lisecond/li /ul /li /ul
 
 The real output is:
 
 !-- See https://bugs.launchpad.net/zope.pagetemplate/+bug/732972 -- 
 ul liroot/li li ul lifirst/li
 
 /ul /li li ul lisecond/li
 
 /ul /li /ul
 
 The difference is that the two inner '/ul' get an extra line before
  them with a single space character.
 
 I have tried a few changes in the test template to see if that would 
 result in the output html being the same with and without Chameleon,
 but that did not work.
 
 Possibly this needs a change not in zope.pagetemplate but in Chameleon
  or one of the other packages.

Or use ElementTree to normalize the XHTML before testing (since the
whitespace diffreences are semantically irrelevant).


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

iEYEARECAAYFAlD5abkACgkQ+gerLs4ltQ4qIACgnPul4E9ztNS5Y3bhXiQRGIa4
fFYAn170Y1Z6b0fe7MQkZKSWfh9ABs/4
=Xn2k
-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 )


Re: [Zope-dev] zope-tests - FAILED: 5, OK: 19

2013-01-18 Thread Maurits van Rees

Op 18-01-13 16:26, Tres Seaver schreef:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 01/18/2013 08:58 AM, Maurits van Rees wrote:

Op 16-01-13 18:47, Tres Seaver schreef:

[3]FAILED  winbot / z3c.ptcompat_py_265_32
https://mail.zope.org/pipermail/zope-tests/2013-January/071440.html






Same error related to the recent zope.pagetemplates changes.


This is a test that passes with standard zope.pagetemplates, but fails
  in combination with Chameleon.  It is in a recursion test that has
been added in zope.pagetemplate 4.0.0.

I have now added a bin/testcompat script in the zope.pagetemplates
buildout to test with z3c.pt(compat) plus Chameleon.

The expected output for this test is:

!-- See https://bugs.launchpad.net/zope.pagetemplate/+bug/732972 --
ul liroot/li li ul lifirst/li /ul /li li ul
lisecond/li /ul /li /ul

The real output is:

!-- See https://bugs.launchpad.net/zope.pagetemplate/+bug/732972 --
ul liroot/li li ul lifirst/li

/ul /li li ul lisecond/li

/ul /li /ul

The difference is that the two inner '/ul' get an extra line before
  them with a single space character.

I have tried a few changes in the test template to see if that would
result in the output html being the same with and without Chameleon,
but that did not work.

Possibly this needs a change not in zope.pagetemplate but in Chameleon
  or one of the other packages.


Or use ElementTree to normalize the XHTML before testing (since the
whitespace diffreences are semantically irrelevant).


I did it in a crude way in zope.pagetemplate:

+# crude way of normalizing whitespace
+expect = expect.replace(' ', '').replace('\n\n', '\n')
+out = out.replace(' ', '').replace('\n\n', '\n')
 util.check_html(expect, out)

That works.

For the buildbot test to pass, a zope.pagetemplate 4.0.1 release would 
need to be made.



--
Maurits van Rees: http://maurits.vanrees.org/
Zest Software: http://zestsoftware.nl

___
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 - FAILED: 5, OK: 19

2013-01-16 Thread Tres Seaver
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 01/15/2013 08:00 PM, Zope tests summarizer wrote:

 [1]FAILED  Still Failing - zopetoolkit_trunk - Build # 141 
 https://mail.zope.org/pipermail/zope-tests/2013-January/071443.html
 
 
 [2]FAILED  Still Failing - zopetoolkit_trunk_app - Build # 124 
 https://mail.zope.org/pipermail/zope-tests/2013-January/071442.html

These are both failing due to timeouts against svn.zope.org.


 [3]FAILED  winbot / z3c.ptcompat_py_265_32 
 https://mail.zope.org/pipermail/zope-tests/2013-January/071440.html

Same error related to the recent zope.pagetemplates changes.


 [4]FAILED  winbot / z3c.recipe.paster_py_265_32 
 https://mail.zope.org/pipermail/zope-tests/2013-January/071463.html

Same arror with mabe a stale (non-PyPI) index?


 [5]FAILED  winbot / zope.catalog_py_265_32 
 https://mail.zope.org/pipermail/zope-tests/2013-January/071441.html


No information in the failed test output at all



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

iEYEARECAAYFAlD2560ACgkQ+gerLs4ltQ7m6wCeIVl0UOrGQXIgkbPGjiBu8CjJ
fMIAoJmt903KsXsoU7+b8Yh8eZodB9Yu
=UlVF
-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 - FAILED: 5, OK: 19

2013-01-15 Thread Zope tests summarizer
This is the summary for test reports received on the 
zope-tests list between 2013-01-14 00:00:00 UTC and 2013-01-15 00:00:00 UTC:

See the footnotes for test reports of unsuccessful builds.

An up-to date view of the builders is also available in our 
buildbot documentation: 
http://docs.zope.org/zopetoolkit/process/buildbots.html#the-nightly-builds

Reports received


[1]Still Failing - zopetoolkit_trunk - Build # 141
[2]Still Failing - zopetoolkit_trunk_app - Build # 124
   Zope-2.10 Python-2.4.6 : Linux
   Zope-2.11 Python-2.4.6 : Linux
   Zope-2.12 Python-2.6.8 : Linux
   Zope-2.13 Python-2.6.8 : Linux
   Zope-2.13 Python-2.7.3 : Linux
   Zope-trunk Python-2.6.8 : Linux
   Zope-trunk Python-2.7.3 : Linux
   winbot / ZODB_dev py_265_win32
   winbot / ZODB_dev py_265_win64
   winbot / ZODB_dev py_270_win32
   winbot / ZODB_dev py_270_win64
[3]winbot / z3c.ptcompat_py_265_32
[4]winbot / z3c.recipe.paster_py_265_32
[5]winbot / zope.catalog_py_265_32
   winbot / ztk_10 py_254_win32
   winbot / ztk_10 py_265_win32
   winbot / ztk_10 py_265_win64
   winbot / ztk_11 py_254_win32
   winbot / ztk_11 py_265_win32
   winbot / ztk_11 py_265_win64
   winbot / ztk_11 py_270_win32
   winbot / ztk_11 py_270_win64

Non-OK results
--

[1]FAILED  Still Failing - zopetoolkit_trunk - Build # 141
   https://mail.zope.org/pipermail/zope-tests/2013-January/071443.html


[2]FAILED  Still Failing - zopetoolkit_trunk_app - Build # 124
   https://mail.zope.org/pipermail/zope-tests/2013-January/071442.html


[3]FAILED  winbot / z3c.ptcompat_py_265_32
   https://mail.zope.org/pipermail/zope-tests/2013-January/071440.html


[4]FAILED  winbot / z3c.recipe.paster_py_265_32
   https://mail.zope.org/pipermail/zope-tests/2013-January/071463.html


[5]FAILED  winbot / zope.catalog_py_265_32
   https://mail.zope.org/pipermail/zope-tests/2013-January/071441.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 - FAILED: 5, OK: 19

2012-12-28 Thread Patrick Gerken
[1]FAILED  Still Failing - zopetoolkit_trunk - Build # 119


 https://mail.zope.org/pipermail/zope-tests/2012-December/070665.html





 [2]FAILED  Still Failing - zopetoolkit_trunk_app - Build # 103

 https://mail.zope.org/pipermail/zope-tests/2012-December/070666.html


This should stop failing now. I updated the svn:ignore properties in
zope.security to fix it.



 [3]FAILED  winbot / BTrees_py_265_32

 https://mail.zope.org/pipermail/zope-tests/2012-December/070686.html


The tests only work with 64 bit. I only debugged code partially, but thats
what I found:
- a abs() method that does number = 0x7fff. I was able to
replace that with sys.maxint to work on 32 bit
- One test wanted to test for value errors on a method by providing
sys.maxint + 1. The method used struct pack and unpack to ensure the
variable is not too big. struct pack and unpack work with the same
datasizes on 32 bit and 64 bit.
I THINK the tests should be rewritten to use unpack to generate maxint, but
I am not sure and hope somebody more knowledgeable than me can give his
opinion here.



 [4]FAILED  winbot / z3c.ptcompat_py_265_32

 https://mail.zope.org/pipermail/zope-tests/2012-December/070663.html


Formatted output differs in whitespaces and newlines.
z3c.ptcompat runs the test from zope.pagetemplates, the tests generate a
different result than in zope.pagetemplates, because after z3c.ptcompat is
installed, the renderer is chameleon. The tests that render differently in
chameleon are new, thats why the tests fail even if nothing changed in
z3c.ptcompat.
It seems chameleon generates too many newlines for a tal repeat statement,
in the output, it contains 2 newlines after each iteration. Does a
chameleon developer read these mails and might want to comment?

This is the input:
!-- See https://bugs.launchpad.net/zope.pagetemplate/+bug/732972 --
ul metal:define-macro=tree
  li tal:content=context/name /
  li tal:repeat=context context/children
ul metal:use-macro=template/macros/tree /
  /li
/ul

and this the output:
!-- See https://bugs.launchpad.net/zope.pagetemplate/+bug/732972 --
ul
 liroot/li
 li
 ul
 lifirst/li

/ul
 /li
 li
 ul
 lisecond/li

/ul
 /li
/ul



 [5]FAILED  winbot / z3c.recipe.paster_py_265_32

 https://mail.zope.org/pipermail/zope-tests/2012-December/070664.html


The tests try to run a buildout in a fake root. I have the same problem
under linux with python 2.7 64 bit. When I kill the test, go to the temp
dir and run the buildout, all works fine, so this might be related to the
fakeroot functionality from buildout. Maybe somebody who knows about that
functionality of buildout could take a look?


___
 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 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 - FAILED: 5, OK: 19

2012-12-27 Thread Zope tests summarizer
This is the summary for test reports received on the 
zope-tests list between 2012-12-26 00:00:00 UTC and 2012-12-27 00:00:00 UTC:

See the footnotes for test reports of unsuccessful builds.

An up-to date view of the builders is also available in our 
buildbot documentation: 
http://docs.zope.org/zopetoolkit/process/buildbots.html#the-nightly-builds

Reports received


[1]Still Failing - zopetoolkit_trunk - Build # 119
[2]Still Failing - zopetoolkit_trunk_app - Build # 103
   Zope-2.10 Python-2.4.6 : Linux
   Zope-2.11 Python-2.4.6 : Linux
   Zope-2.12 Python-2.6.8 : Linux
   Zope-2.13 Python-2.6.8 : Linux
   Zope-2.13 Python-2.7.3 : Linux
   Zope-trunk Python-2.6.8 : Linux
   Zope-trunk Python-2.7.3 : Linux
[3]winbot / BTrees_py_265_32
   winbot / ZODB_dev py_265_win32
   winbot / ZODB_dev py_265_win64
   winbot / ZODB_dev py_270_win32
   winbot / ZODB_dev py_270_win64
[4]winbot / z3c.ptcompat_py_265_32
[5]winbot / z3c.recipe.paster_py_265_32
   winbot / ztk_10 py_254_win32
   winbot / ztk_10 py_265_win32
   winbot / ztk_10 py_265_win64
   winbot / ztk_11 py_254_win32
   winbot / ztk_11 py_265_win32
   winbot / ztk_11 py_265_win64
   winbot / ztk_11 py_270_win32
   winbot / ztk_11 py_270_win64

Non-OK results
--

[1]FAILED  Still Failing - zopetoolkit_trunk - Build # 119
   https://mail.zope.org/pipermail/zope-tests/2012-December/070665.html


[2]FAILED  Still Failing - zopetoolkit_trunk_app - Build # 103
   https://mail.zope.org/pipermail/zope-tests/2012-December/070666.html


[3]FAILED  winbot / BTrees_py_265_32
   https://mail.zope.org/pipermail/zope-tests/2012-December/070686.html


[4]FAILED  winbot / z3c.ptcompat_py_265_32
   https://mail.zope.org/pipermail/zope-tests/2012-December/070663.html


[5]FAILED  winbot / z3c.recipe.paster_py_265_32
   https://mail.zope.org/pipermail/zope-tests/2012-December/070664.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 )


[Zope-dev] zope-tests - FAILED: 5, OK: 19

2012-12-25 Thread Zope tests summarizer
This is the summary for test reports received on the 
zope-tests list between 2012-12-24 00:00:00 UTC and 2012-12-25 00:00:00 UTC:

See the footnotes for test reports of unsuccessful builds.

An up-to date view of the builders is also available in our 
buildbot documentation: 
http://docs.zope.org/zopetoolkit/process/buildbots.html#the-nightly-builds

Reports received


[1]Still Failing - zopetoolkit_trunk - Build # 117
[2]Still Failing - zopetoolkit_trunk_app - Build # 101
   Zope-2.10 Python-2.4.6 : Linux
   Zope-2.11 Python-2.4.6 : Linux
   Zope-2.12 Python-2.6.8 : Linux
   Zope-2.13 Python-2.6.8 : Linux
   Zope-2.13 Python-2.7.3 : Linux
   Zope-trunk Python-2.6.8 : Linux
   Zope-trunk Python-2.7.3 : Linux
[3]winbot / BTrees_py_265_32
   winbot / ZODB_dev py_265_win32
   winbot / ZODB_dev py_265_win64
   winbot / ZODB_dev py_270_win32
   winbot / ZODB_dev py_270_win64
[4]winbot / z3c.ptcompat_py_265_32
[5]winbot / z3c.recipe.paster_py_265_32
   winbot / ztk_10 py_254_win32
   winbot / ztk_10 py_265_win32
   winbot / ztk_10 py_265_win64
   winbot / ztk_11 py_254_win32
   winbot / ztk_11 py_265_win32
   winbot / ztk_11 py_265_win64
   winbot / ztk_11 py_270_win32
   winbot / ztk_11 py_270_win64

Non-OK results
--

[1]FAILED  Still Failing - zopetoolkit_trunk - Build # 117
   https://mail.zope.org/pipermail/zope-tests/2012-December/070617.html


[2]FAILED  Still Failing - zopetoolkit_trunk_app - Build # 101
   https://mail.zope.org/pipermail/zope-tests/2012-December/070616.html


[3]FAILED  winbot / BTrees_py_265_32
   https://mail.zope.org/pipermail/zope-tests/2012-December/070637.html


[4]FAILED  winbot / z3c.ptcompat_py_265_32
   https://mail.zope.org/pipermail/zope-tests/2012-December/070614.html


[5]FAILED  winbot / z3c.recipe.paster_py_265_32
   https://mail.zope.org/pipermail/zope-tests/2012-December/070615.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 - FAILED: 5, OK: 19, UNKNOWN: 1

2012-09-14 Thread Tres Seaver
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 09/13/2012 09:00 PM, Zope tests summarizer wrote:
 
 [1]UNKNOWN OK Successful - zopetoolkit_trunk - Build # 12 
 https://mail.zope.org/pipermail/zope-tests/2012-September/067886.html

Output from test runs should be massaged to conform to:

 
http://docs.zope.org/zopetoolkit/process/buildbots.html#informing-the-zope-developer-community-about-build-results


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

iEYEARECAAYFAlBTZsIACgkQ+gerLs4ltQ4nmQCfQbOQtwtLMIfRj47Zwdgi96HI
g8MAnjE4y80+LIjVIMaaGQ8iwnsPYLdz
=nVWd
-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 - FAILED: 5, OK: 19, UNKNOWN: 1

2012-09-13 Thread Zope tests summarizer
This is the summary for test reports received on the 
zope-tests list between 2012-09-12 00:00:00 UTC and 2012-09-13 00:00:00 UTC:

See the footnotes for test reports of unsuccessful builds.

An up-to date view of the builders is also available in our 
buildbot documentation: 
http://docs.zope.org/zopetoolkit/process/buildbots.html#the-nightly-builds

Reports received


[1]OK Successful - zopetoolkit_trunk - Build # 12
   Zope-2.10 Python-2.4.6 : Linux
   Zope-2.11 Python-2.4.6 : Linux
   Zope-2.12 Python-2.6.8 : Linux
   Zope-2.13 Python-2.6.8 : Linux
   Zope-2.13 Python-2.7.3 : Linux
   Zope-trunk Python-2.6.8 : Linux
   Zope-trunk Python-2.7.3 : Linux
   winbot / ZODB_dev py_265_win32
   winbot / ZODB_dev py_265_win64
   winbot / ZODB_dev py_270_win32
   winbot / ZODB_dev py_270_win64
[2]winbot / z3c.contents_py_265_32
[3]winbot / z3c.coverage_py_265_32
[4]winbot / z3c.layer.pagelet_py_265_32
[5]winbot / z3c.layer.ready2go_py_265_32
[6]winbot / z3c.recipe.paster_py_265_32
   winbot / ztk_10 py_254_win32
   winbot / ztk_10 py_265_win32
   winbot / ztk_10 py_265_win64
   winbot / ztk_11 py_254_win32
   winbot / ztk_11 py_265_win32
   winbot / ztk_11 py_265_win64
   winbot / ztk_11 py_270_win32
   winbot / ztk_11 py_270_win64

Non-OK results
--

[1]UNKNOWN OK Successful - zopetoolkit_trunk - Build # 12
   https://mail.zope.org/pipermail/zope-tests/2012-September/067886.html


[2]FAILED  winbot / z3c.contents_py_265_32
   https://mail.zope.org/pipermail/zope-tests/2012-September/067875.html


[3]FAILED  winbot / z3c.coverage_py_265_32
   https://mail.zope.org/pipermail/zope-tests/2012-September/067878.html


[4]FAILED  winbot / z3c.layer.pagelet_py_265_32
   https://mail.zope.org/pipermail/zope-tests/2012-September/067874.html


[5]FAILED  winbot / z3c.layer.ready2go_py_265_32
   https://mail.zope.org/pipermail/zope-tests/2012-September/067876.html


[6]FAILED  winbot / z3c.recipe.paster_py_265_32
   https://mail.zope.org/pipermail/zope-tests/2012-September/067877.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 )


[Zope-dev] zope-tests - FAILED: 5, OK: 19

2012-08-05 Thread Zope tests summarizer
This is the summary for test reports received on the 
zope-tests list between 2012-08-04 00:00:00 UTC and 2012-08-05 00:00:00 UTC:

See the footnotes for test reports of unsuccessful builds.

An up-to date view of the builders is also available in our 
buildbot documentation: 
http://docs.zope.org/zopetoolkit/process/buildbots.html#the-nightly-builds

Reports received


[1]Repository policy check found errors in 274 projects
[2]Total languishing bugs for zope2: 2
[3]Total languishing bugs for zope: 65
[4]Total languishing bugs for zopeapp: 1
[5]Total languishing bugs for zopetoolkit: 200
   Zope-2.10 Python-2.4.6 : Linux
   Zope-2.11 Python-2.4.6 : Linux
   Zope-2.12 Python-2.6.8 : Linux
   Zope-2.13 Python-2.6.8 : Linux
   Zope-2.13 Python-2.7.3 : Linux
   Zope-trunk Python-2.6.8 : Linux
   Zope-trunk Python-2.7.3 : Linux
   winbot / ZODB_dev py_265_win32
   winbot / ZODB_dev py_265_win64
   winbot / ZODB_dev py_270_win32
   winbot / ZODB_dev py_270_win64
   winbot / ztk_10 py_254_win32
   winbot / ztk_10 py_265_win32
   winbot / ztk_10 py_265_win64
   winbot / ztk_11 py_254_win32
   winbot / ztk_11 py_265_win32
   winbot / ztk_11 py_265_win64
   winbot / ztk_11 py_270_win32
   winbot / ztk_11 py_270_win64

Non-OK results
--

[1]FAILED  Repository policy check found errors in 274 projects
   https://mail.zope.org/pipermail/zope-tests/2012-August/066014.html


[2]FAILED  Total languishing bugs for zope2: 2
   https://mail.zope.org/pipermail/zope-tests/2012-August/066012.html


[3]FAILED  Total languishing bugs for zope: 65
   https://mail.zope.org/pipermail/zope-tests/2012-August/066011.html


[4]FAILED  Total languishing bugs for zopeapp: 1
   https://mail.zope.org/pipermail/zope-tests/2012-August/066009.html


[5]FAILED  Total languishing bugs for zopetoolkit: 200
   https://mail.zope.org/pipermail/zope-tests/2012-August/066010.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 )