#!/bin/csh 

cat <<EOF

This tool has been incorporated into create_suite.  Invoke
create_suite as follows:
EOF

./create_suite

cat <<EOF

for example,

./create_suite -input_list lightning.pretag -testid b40pretag -testroot /ptmp/\$LOGNAME/tests -baselineroot /fis/cgd/csm/ccsm_baselines -generate ccsm3_1_beta40 -compare ccsm3_1_beta39

lightning.pretag is a valid input_list for create_suite.  The
script searches locally and in the Testlists directory to find
the test list.  For pretag and postag lists, the cs.submit script will
automatically be executed as part of create_suite.

Alternatively, a simple sample script is available at the bottom
of run_test_script which can be used.  cat run_test_suite to see it.

EOF

exit 0

set input_list = lightning.pretag
set testid = b40pretag
set testroot = /ptmp/$LOGNAME/tests
set baselineroot = /fis/cgd/csm/ccsm_baselines
set gen = ccsm3_1_beta40
set cmp = ccsm3_1_beta39

./create_suite -input_list $input_list -testid $testid -testroot $testroot -baselineroot $baselineroot -generate $gen -compare $cmp
