1
1
openmpi/test/mca/gpr/run_tests
Ralph Castain 0d7c16f400 Update the registry with some functionality and an early draft of the unit test.
I could use some help from one of you MCA gurus - if you run the test, you'll see that I cannot get the gpr components to be recognized. I'm not sure of the reason - I would appreciate any help you can provide to get the gpr components "registered".

This commit was SVN r2158.
2004-08-16 02:08:48 +00:00

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

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