From 89ccdf8145a28fd0f8c91f97419fc6c1c1bc43a9 Mon Sep 17 00:00:00 2001 From: Laura Casswell Date: Tue, 10 Aug 2004 16:45:20 +0000 Subject: [PATCH] add script to run tests This commit was SVN r2004. --- test/mca/llm/base/run_tests | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100755 test/mca/llm/base/run_tests diff --git a/test/mca/llm/base/run_tests b/test/mca/llm/base/run_tests new file mode 100755 index 0000000000..545145f8b2 --- /dev/null +++ b/test/mca/llm/base/run_tests @@ -0,0 +1,34 @@ +#! /bin/csh -f +# Name +# ==== +# run for mca llm base tests + +# Arguements +# ========== +# +# test_list = no args runs all tests +# or +# parse_hostfile runs ompi llm base parse_hostfile 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 + ./parse_hostfile; +else if ("$1" == "parse_hostfile") then + ./parse_hostfile; +else + echo "correct use: " + echo " run (to run all class tests)" + echo "or run < parse_hostfile >" + exit -1 +endif + +