1
1
openmpi/test/mca/ns/run_tests
Laura Casswell 7732a29d49 add script to run tests
This commit was SVN r2010.
2004-08-10 19:10:29 +00:00

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

#! /bin/csh -f
# Name
# ====
# run 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
# with no arguments to run all tests, or
# run <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 (to run all class tests)"
echo "or run < replica >"
exit -1
endif