#!/bin/csh -f
#
#    ta
#
#       Wrapper for the gated tester: runs with the "-a" option.
#
#    NOTE:  the file "testg_setup.csh" must be run first in order for
#           this file to run properly.
# $Id: ta,v 1.2 1997/09/24 00:36:02 naamato Exp $
#
#echo "Number of args = $#argv"
if ( $#argv == 1 ) then
   testg -v -a <$gated_test_dir/$1/$1.auto
else
   echo "Usage:  ta <test name>"
   echo "        runs the <test name>.auto file in the test directory."
endif
#
