Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
ZODB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kirill Smelkov
ZODB
Commits
3a716599
Commit
3a716599
authored
Nov 20, 2008
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added back the os.waitpid calls since we don't use subprocess on
windows. Just made the waitpid ignore exceptions. :)
parent
7db000a3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
src/ZEO/tests/ConnectionTests.py
src/ZEO/tests/ConnectionTests.py
+8
-0
No files found.
src/ZEO/tests/ConnectionTests.py
View file @
3a716599
...
...
@@ -104,6 +104,7 @@ class CommonSetupTearDown(StorageTestBase):
logging
.
info
(
"setUp() %s"
,
self
.
id
())
self
.
file
=
'storage_conf'
self
.
addr
=
[]
self
.
_pids
=
[]
self
.
_servers
=
[]
self
.
conf_paths
=
[]
self
.
caches
=
[]
...
...
@@ -132,6 +133,12 @@ class CommonSetupTearDown(StorageTestBase):
for
adminaddr
in
self
.
_servers
:
if
adminaddr
is
not
None
:
forker
.
shutdown_zeo_server
(
adminaddr
)
for
pid
in
self
.
_pids
:
try
:
os
.
waitpid
(
pid
,
0
)
except
OSError
:
pass
# The subprocess module may already have waited
for
c
in
self
.
caches
:
for
i
in
0
,
1
:
for
ext
in
""
,
".trace"
,
".lock"
:
...
...
@@ -214,6 +221,7 @@ class CommonSetupTearDown(StorageTestBase):
zeoport
,
adminaddr
,
pid
,
path
=
forker
.
start_zeo_server
(
sconf
,
zconf
,
addr
[
1
],
keep
)
self
.
conf_paths
.
append
(
path
)
self
.
_pids
.
append
(
pid
)
self
.
_servers
.
append
(
adminaddr
)
def
shutdownServer
(
self
,
index
=
0
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment