Commit 452de97c authored by Jim Fulton's avatar Jim Fulton

Fixed windows-incompatibility in tests.

parent e9b74af0
...@@ -217,7 +217,9 @@ __test__ = dict( ...@@ -217,7 +217,9 @@ __test__ = dict(
>>> for i in range(10): >>> for i in range(10):
... _ = os.spawnl(os.P_WAIT, sys.executable, sys.executable, 't') ... _ = os.spawnl(os.P_WAIT, sys.executable, sys.executable, 't')
... if os.path.exists('cache'): ... if os.path.exists('cache'):
... cache = ZEO.cache.ClientCache('cache').open() ... cache = ZEO.cache.ClientCache('cache')
... cache.open()
... cache.close()
... os.remove('cache') ... os.remove('cache')
... os.remove('cache.lock') ... os.remove('cache.lock')
...@@ -240,18 +242,20 @@ __test__ = dict( ...@@ -240,18 +242,20 @@ __test__ = dict(
>>> cache = ZEO.cache.ClientCache('cache', 1000) >>> cache = ZEO.cache.ClientCache('cache', 1000)
>>> cache.open() >>> cache.open()
>>> cache.store(ZODB.utils.p64(2), '', ZODB.utils.p64(2), None, 'XXX') >>> cache.store(ZODB.utils.p64(2), '', ZODB.utils.p64(2), None, 'XXX')
>>> cache.close()
""", """,
cannot_open_same_cache_file_twice = cannot_open_same_cache_file_twice =
r""" r"""
>>> import ZEO.cache >>> import ZEO.cache
>>> cache = ZEO.cache.ClientCache('cache', 1000) >>> cache = ZEO.cache.ClientCache('cache', 1000)
>>> cache = ZEO.cache.ClientCache('cache', 1000) >>> cache2 = ZEO.cache.ClientCache('cache', 1000)
Traceback (most recent call last): Traceback (most recent call last):
... ...
LockError: Couldn't lock 'cache.lock' LockError: Couldn't lock 'cache.lock'
>>> cache.close()
""", """,
) )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment