From 0216249ba58891ff20fb060e43ac38e31dbcf10e Mon Sep 17 00:00:00 2001 From: Laura Casswell Date: Tue, 10 Aug 2004 16:45:51 +0000 Subject: [PATCH] add script for running llm tests This commit was SVN r2005. --- test/mca/llm/run_tests | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100755 test/mca/llm/run_tests diff --git a/test/mca/llm/run_tests b/test/mca/llm/run_tests new file mode 100755 index 0000000000..c9724a8e9d --- /dev/null +++ b/test/mca/llm/run_tests @@ -0,0 +1,38 @@ +#! /bin/csh -f +# Name +# ==== +# run for mca llm tests + +# Arguements +# ========== +# +# test_list = no args runs all tests +# or +# base runs ompi llm base tests + +# Usage +# +# ===== +# To invoke this script, enter either +# run +# with no arguments to run all tests, or +# run + +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 (to run all class tests)" + echo "or run < base >" + exit -1 +endif + +