Re: [Zope-dev] Running Zope tests in 2.7 fails

2004-08-20 Thread Lennart Regebro
Lennart Regebro wrote:
I have finally realized that the way tests are run in 2.7 is different 
from earlier version of Zope, and I'm trying to get them to run.

It's Zope 2.7.2 on Debian. Python 2.3.4 and 2.3.2, so I guess 2.3.3 
would give the same error. Could it be a side effect of the compiling or 
something?
Ah. OK. if you run python test.py, it fails.
If you run bin/python test.py it works. Not exactly obvious...
And why is there a test.py in the root of the install, and one in the 
bin folder? Is there a difference?

//Still trying to get a hang on Zope 2.7 testing.
___
Zope-Dev maillist  -  [EMAIL PROTECTED]
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] Running Zope tests in 2.7 fails

2004-08-20 Thread Dieter Maurer
Lennart Regebro wrote at 2004-8-20 12:12 +0200:
 ...
line 42, in ?
 from cDocumentTemplate import InstanceDict, TemplateDict, \
ImportError: 
/home/regebro/Zopes/Zope-2.7.2-0/lib/python/DocumentTemplate/cDocumentTemplate.so: 
undefined symbol: PyUnicodeUCS4_DecodeLatin1

This means: cDocumentTemplate.so was build with a different Python
interpreter (one that uses UCS4 unicode) than you are using now
for your tests (one that uses UCS2 unicode).

Use the same Python interpreter both for generation as well
as testing.

-- 
Dieter
___
Zope-Dev maillist  -  [EMAIL PROTECTED]
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 )