home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / pyth_os2.zip / python-1.0.2 / Demo / rpc / test < prev    next >
Text File  |  1993-12-17  |  675b  |  24 lines

  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. sleep 2
  11. $PYTHON -c 'from rpc import testclt; testclt()'
  12. kill -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()'
  24.