Guido van Rossum | fdcbbcb | 1992-12-21 14:31:41 +0000 | [diff] [blame^] | 1 | : ${PYTHON=python} |
| 2 | |
| 3 | set -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()' & |
| 9 | SVR=$! |
| 10 | $PYTHON -c 'from rpc import testclt; testclt()' |
| 11 | kill -2 $SVR |
| 12 | |
| 13 | $PYTHON -c 'from mountclient import test; test()' |
| 14 | $PYTHON -c 'from mountclient import test; test()' gatekeeper.dec.com |
| 15 | |
| 16 | $PYTHON -c 'from nfsclient import test; test()' |
| 17 | $PYTHON -c 'from nfsclient import test; test()' gatekeeper.dec.com |
| 18 | $PYTHON -c 'from nfsclient import test; test()' gatekeeper.dec.com /archive |
| 19 | |
| 20 | $PYTHON -c 'from rnusersclient import test; test()' '' |
| 21 | |
| 22 | $PYTHON -c 'from rpc import testbcast; testbcast()' |