2004-08-10 16:45:51 +00:00
|
|
|
#! /bin/csh -f
|
|
|
|
# Name
|
|
|
|
# ====
|
2004-08-11 17:27:56 +00:00
|
|
|
# run script for mca llm tests
|
2004-08-10 16:45:51 +00:00
|
|
|
|
|
|
|
# Arguements
|
|
|
|
# ==========
|
|
|
|
#
|
|
|
|
# test_list = no args runs all tests
|
|
|
|
# or
|
|
|
|
# base runs ompi llm base tests
|
|
|
|
|
|
|
|
# Usage
|
|
|
|
#
|
|
|
|
# =====
|
|
|
|
# To invoke this script, enter either
|
2004-08-11 17:27:56 +00:00
|
|
|
# run_tests
|
2004-08-10 16:45:51 +00:00
|
|
|
# with no arguments to run all tests, or
|
2004-08-11 17:27:56 +00:00
|
|
|
# run_tests <test_name>
|
2004-08-10 16:45:51 +00:00
|
|
|
|
|
|
|
umask 007
|
|
|
|
|
|
|
|
if ("x$1" == "x") then
|
|
|
|
cd base;
|
|
|
|
./run_tests;
|
|
|
|
cd ..;
|
|
|
|
else if ("$1" == "base") then
|
|
|
|
cd base;
|
|
|
|
./run_tests;
|
|
|
|
cd ..;
|
|
|
|
else
|
|
|
|
echo "correct use: "
|
2004-08-11 17:27:56 +00:00
|
|
|
echo " run_tests (to run all mca llm tests)"
|
|
|
|
echo "or run_tests < base >"
|
2004-08-10 16:45:51 +00:00
|
|
|
exit -1
|
|
|
|
endif
|
|
|
|
|
|
|
|
|