1
1
This commit was SVN r2004.
Этот коммит содержится в:
Laura Casswell 2004-08-10 16:45:20 +00:00
родитель 7932c850c1
Коммит 89ccdf8145

34
test/mca/llm/base/run_tests Исполняемый файл
Просмотреть файл

@ -0,0 +1,34 @@
#! /bin/csh -f
# Name
# ====
# run for mca llm base tests
# Arguements
# ==========
#
# test_list = no args runs all tests
# or
# parse_hostfile runs ompi llm base parse_hostfile 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
./parse_hostfile;
else if ("$1" == "parse_hostfile") then
./parse_hostfile;
else
echo "correct use: "
echo " run (to run all class tests)"
echo "or run < parse_hostfile >"
exit -1
endif