1
1
This commit was SVN r2093.
Этот коммит содержится в:
Laura Casswell 2004-08-12 21:38:21 +00:00
родитель a607e59314
Коммит 5b60687358

Просмотреть файл

@ -8,9 +8,10 @@
# #
# test_list = no args runs all tests # test_list = no args runs all tests
# or # or
# llm runs ompi llm tests # llm runs ompi mca llm tests
# ns runs ompi ns tests # ns runs ompi mca ns tests
# oob runs ompi oob tests # oob runs ompi mca oob tests
# pcm runs ompi mca pcm tests
# Usage # Usage
# #
@ -23,29 +24,31 @@
umask 007 umask 007
if ("x$1" == "x") then if ("x$1" == "x") then
cd llm; cd llm; ./run_tests;
./run_tests; # cd ../ns; ./run_tests;
cd ../ns; cd ../oob; ./run_tests;
./run_tests; cd ../pcm; ./run_tests;
cd ../oob;
./run_tests;
cd ..; cd ..;
else if ("$1" == "llm") then else if ("$1" == "llm") then
cd llm; cd llm;
./run_tests; ./run_tests;
cd ..; cd ..;
else if ("$1" == "ns") then #else if ("$1" == "ns") then
cd ns; # cd ns;
./run_tests; # ./run_tests;
cd ..; # cd ..;
else if ("$1" == "oob") then else if ("$1" == "oob") then
cd oob; cd oob;
./run_tests; ./run_tests;
cd ..; cd ..;
else if ("$1" == "pcm") then
cd pcm;
./run_tests;
cd ../;
else else
echo "correct use: " echo "correct use: "
echo " run_tests (to run all mca tests)" echo " run_tests (to run all mca tests)"
echo "or run_tests <llm | ns | oob>" echo "or run_tests <llm | ns | oob | pcm>"
exit -1 exit -1
endif endif