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
f3bdbd04
Commit
f3bdbd04
authored
Jan 21, 2002
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make sure the child process doesn't raise an exception and continue
running the rest of the tests in the child.
parent
a75cce21
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
36 additions
and
32 deletions
+36
-32
src/ZEO/tests/multi.py
src/ZEO/tests/multi.py
+12
-10
src/ZEO/tests/stress.py
src/ZEO/tests/stress.py
+24
-22
No files found.
src/ZEO/tests/multi.py
View file @
f3bdbd04
...
@@ -56,6 +56,7 @@ def start_server(addr):
...
@@ -56,6 +56,7 @@ def start_server(addr):
def
start_client
(
addr
,
client_func
=
None
):
def
start_client
(
addr
,
client_func
=
None
):
pid
=
os
.
fork
()
pid
=
os
.
fork
()
if
pid
==
0
:
if
pid
==
0
:
try
:
import
ZEO.ClientStorage
import
ZEO.ClientStorage
if
VERBOSE
:
if
VERBOSE
:
print
"Client process started:"
,
os
.
getpid
()
print
"Client process started:"
,
os
.
getpid
()
...
@@ -65,6 +66,7 @@ def start_client(addr, client_func=None):
...
@@ -65,6 +66,7 @@ def start_client(addr, client_func=None):
else
:
else
:
client_func
(
cli
)
client_func
(
cli
)
cli
.
close
()
cli
.
close
()
finally
:
os
.
_exit
(
0
)
os
.
_exit
(
0
)
else
:
else
:
return
pid
return
pid
...
...
src/ZEO/tests/stress.py
View file @
f3bdbd04
...
@@ -91,6 +91,7 @@ def start_child(zaddr):
...
@@ -91,6 +91,7 @@ def start_child(zaddr):
if
pid
!=
0
:
if
pid
!=
0
:
return
pid
return
pid
try
:
storage
=
ClientStorage
(
zaddr
,
debug
=
1
,
min_disconnect_poll
=
0.5
)
storage
=
ClientStorage
(
zaddr
,
debug
=
1
,
min_disconnect_poll
=
0.5
)
db
=
ZODB
.
DB
(
storage
,
pool_size
=
NUM_CONNECTIONS
)
db
=
ZODB
.
DB
(
storage
,
pool_size
=
NUM_CONNECTIONS
)
setup
(
db
.
open
())
setup
(
db
.
open
())
...
@@ -116,6 +117,7 @@ def start_child(zaddr):
...
@@ -116,6 +117,7 @@ def start_child(zaddr):
c
.
__count
+=
1
c
.
__count
+=
1
work
(
c
)
work
(
c
)
finally
:
os
.
_exit
(
0
)
os
.
_exit
(
0
)
if
__name__
==
"__main__"
:
if
__name__
==
"__main__"
:
...
...
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