blob: d3c9591b7022f2f0dd16694d2c051bac0b8e2665 [file] [log] [blame]
Guido van Rossumfdcbbcb1992-12-21 14:31:41 +00001: ${PYTHON=python}
2
3set -xe
4
5$PYTHON -c 'from rpc import test; test()'
6$PYTHON -c 'from rpc import test; test()' charon.cwi.nl
7
8$PYTHON -c 'from rpc import testsvr; testsvr()' &
9SVR=$!
Guido van Rossum9e80d6f1993-12-17 14:32:26 +000010sleep 2
Guido van Rossumfdcbbcb1992-12-21 14:31:41 +000011$PYTHON -c 'from rpc import testclt; testclt()'
12kill -2 $SVR
13
14$PYTHON -c 'from mountclient import test; test()'
15$PYTHON -c 'from mountclient import test; test()' gatekeeper.dec.com
16
17$PYTHON -c 'from nfsclient import test; test()'
18$PYTHON -c 'from nfsclient import test; test()' gatekeeper.dec.com
19$PYTHON -c 'from nfsclient import test; test()' gatekeeper.dec.com /archive
20
21$PYTHON -c 'from rnusersclient import test; test()' ''
22
23$PYTHON -c 'from rpc import testbcast; testbcast()'