1
1
openmpi/test/mca/ns/run_tests
Laura Casswell b8f5447d56 fix comments and usage text
This commit was SVN r2058.
2004-08-11 17:30:07 +00:00

35 строки
586 B
Tcsh
Исполняемый файл

#! /bin/csh -f
# Name
# ====
# run script for mca ns tests
# Arguements
# ==========
#
# test_list = no args runs all tests
# or
# replica runs ompi ns replica tests
# Usage
#
# =====
# To invoke this script, enter either
# run_tests
# with no arguments to run all tests, or
# run_tests <test_name>
umask 007
if ("x$1" == "x") then
./test_ns_replica;
else if ("$1" == "replica") then
./test_ns_replica;
else
echo "correct use: "
echo " run_tests (to run all mca ns tests)"
echo "or run_tests < replica >"
exit -1
endif