~ubuntu-branches/ubuntu/vivid/gcl/vivid

« back to all changes in this revision

Viewing changes to xbin/test

  • Committer: Bazaar Package Importer
  • Author(s): Camm Maguire
  • Date: 2002-03-04 14:29:59 UTC
  • Revision ID: james.westby@ubuntu.com-20020304142959-dey14w08kr7lldu3
Tags: upstream-2.5.0.cvs20020219
ImportĀ upstreamĀ versionĀ 2.5.0.cvs20020219

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
TAR=${HOME}/tmp/gcl.tgz
 
3
xbin/distribute ${TAR}
 
4
 
 
5
if [ "$1" = "" ] ; then
 
6
   make -f xbin/maketest make "TAR=${TAR}"
 
7
else
 
8
if [ "$1" = "fireant.ma.utexas.edu" ] ; then true; else
 
9
   rcp ${TAR}  $1:tmp/${TAR} ;fi 
 
10
   rcp xbin/test1 $1:tmp
 
11
   rsh $1 '(cd tmp ; test1 ${HOME} ${HOME}/tmp/gcl.tgz)' < /dev/null
 
12
fi
 
13
 
 
14
 
 
15
 
 
16