diff options
author | Guido van Rossum <guido@python.org> | 1995-10-11 18:54:15 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-10-11 18:54:15 (GMT) |
commit | 5e6a3564b02756187ff611bd0606797c731eef63 (patch) | |
tree | ffc2bc46d4ae13d3dbc343bf172769db96ef29e6 /Demo/rpc/test | |
parent | 81a07ceddc86d75e48242f0b94e9e3f5bab72e5b (diff) | |
download | cpython-5e6a3564b02756187ff611bd0606797c731eef63.zip cpython-5e6a3564b02756187ff611bd0606797c731eef63.tar.gz cpython-5e6a3564b02756187ff611bd0606797c731eef63.tar.bz2 |
undo opaque=fopaque changes; make test script more flexible
Diffstat (limited to 'Demo/rpc/test')
-rwxr-xr-x | Demo/rpc/test | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Demo/rpc/test b/Demo/rpc/test index d3c9591..ba220f2 100755 --- a/Demo/rpc/test +++ b/Demo/rpc/test @@ -1,15 +1,16 @@ : ${PYTHON=python} +: ${SERVER=charon.cwi.nl} set -xe $PYTHON -c 'from rpc import test; test()' -$PYTHON -c 'from rpc import test; test()' charon.cwi.nl +$PYTHON -c 'from rpc import test; test()' ${SERVER} $PYTHON -c 'from rpc import testsvr; testsvr()' & -SVR=$! +PID=$! sleep 2 $PYTHON -c 'from rpc import testclt; testclt()' -kill -2 $SVR +kill -2 $PID $PYTHON -c 'from mountclient import test; test()' $PYTHON -c 'from mountclient import test; test()' gatekeeper.dec.com |