[Zodb-checkins] SVN: ZODB/trunk/src/ZEO/tests/testZEO.py Sigh. Can'r use unix-domain sockets on windows.
Jim Fulton
jim at zope.com
Wed Aug 26 06:45:50 EDT 2009
Log message for revision 103221:
Sigh. Can'r use unix-domain sockets on windows.
Changed:
U ZODB/trunk/src/ZEO/tests/testZEO.py
-=-
Modified: ZODB/trunk/src/ZEO/tests/testZEO.py
===================================================================
--- ZODB/trunk/src/ZEO/tests/testZEO.py 2009-08-26 10:40:03 UTC (rev 103220)
+++ ZODB/trunk/src/ZEO/tests/testZEO.py 2009-08-26 10:45:50 UTC (rev 103221)
@@ -1193,15 +1193,15 @@
>>> import subprocess, re
>>> print re.sub('\d\d+|[:]', '', subprocess.Popen(
- ... [sys.executable, 'runzeo', '-a./s', '-ft', '--test'],
+ ... [sys.executable, 'runzeo', '-a:%s' % get_port(), '-ft', '--test'],
... stdout=subprocess.PIPE, stderr=subprocess.STDOUT,
- ... ).stdout.read()),
+ ... ).stdout.read()), # doctest: +ELLIPSIS +NORMALIZE_WHITESPACE
------
--T INFO ZEO.runzeo () opening storage '1' using FileStorage
------
--T INFO ZEO.StorageServer () StorageServer created RW with storages 1RWt
------
- --T INFO ZEO.zrpc () listening on ./s
+ --T INFO ZEO.zrpc () listening on ...
------
--T INFO ZEO.runzeo () closing storage '1'
testing exit immediately
More information about the Zodb-checkins
mailing list