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