1
1
openmpi/test/threads/run_tests
Laura Casswell 0f848961e3 fix comments
This commit was SVN r2051.
2004-08-11 17:20:34 +00:00

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

#! /bin/csh -f
# Name
# ====
# run script for thread tests
# Arguements
# ==========
#
# test_list = no args runs all tests
# or
# condition runs ompi_condition tests
# thread runs ompi_thread 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
./ompi_thread
./ompi_condition
else if ("$1" == "condition") then
./ompi_condition
else if ("$1" == "thread") then
./ompi_thread
else
echo "correct use: "
echo " run_tests (to run all thread tests)"
echo "or run_tests <condition | thread>"
exit -1
endif