this will run the test but is incomplete. We need to set up a standard
environment so the sched_comm test will have a standard result This commit was SVN r2094.
Этот коммит содержится в:
родитель
5b60687358
Коммит
478de2a9fa
34
test/mca/pcm/base/run_tests
Исполняемый файл
34
test/mca/pcm/base/run_tests
Исполняемый файл
@ -0,0 +1,34 @@
|
||||
#! /bin/csh -f
|
||||
# Name
|
||||
# ====
|
||||
# run for mca pcm base tests
|
||||
|
||||
# Arguements
|
||||
# ==========
|
||||
#
|
||||
# test_list = no args runs all tests
|
||||
# or
|
||||
# sched_comm runs ompi pcm base sched_comm 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
|
||||
./sched_comm;
|
||||
else if ("$1" == "sched_comm") then
|
||||
./sched_comm;
|
||||
else
|
||||
echo "correct use: "
|
||||
echo " run (to run all mca pcm base tests)"
|
||||
echo "or run < sched_comm >"
|
||||
exit -1
|
||||
endif
|
||||
|
||||
|
38
test/mca/pcm/run_tests
Исполняемый файл
38
test/mca/pcm/run_tests
Исполняемый файл
@ -0,0 +1,38 @@
|
||||
#! /bin/csh -f
|
||||
# Name
|
||||
# ====
|
||||
# run script for mca pcm tests
|
||||
|
||||
# Arguements
|
||||
# ==========
|
||||
#
|
||||
# test_list = no args runs all tests
|
||||
# or
|
||||
# base runs ompi pcm base 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
|
||||
cd base;
|
||||
./run_tests;
|
||||
cd ..;
|
||||
else if ("$1" == "base") then
|
||||
cd base;
|
||||
./run_tests;
|
||||
cd ..;
|
||||
else
|
||||
echo "correct use: "
|
||||
echo " run_tests (to run all mca pcm tests)"
|
||||
echo "or run_tests < base >"
|
||||
exit -1
|
||||
endif
|
||||
|
||||
|
Загрузка…
Ссылка в новой задаче
Block a user