1
1
This commit was SVN r2010.
Этот коммит содержится в:
Laura Casswell 2004-08-10 19:10:29 +00:00
родитель a78f5f2059
Коммит 7732a29d49

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

@ -0,0 +1,34 @@
#! /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