From 272998ab4b62b9add00e3b59df7f8f2ad831f6ef Mon Sep 17 00:00:00 2001 From: Laura Casswell Date: Wed, 11 Aug 2004 22:18:36 +0000 Subject: [PATCH] add simple run script for rte tests This commit was SVN r2078. --- test/rte/run_tests | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100755 test/rte/run_tests diff --git a/test/rte/run_tests b/test/rte/run_tests new file mode 100755 index 0000000000..18157fb14e --- /dev/null +++ b/test/rte/run_tests @@ -0,0 +1,34 @@ +#! /bin/csh -f +# Name +# ==== +# run script for rte tests + +# Arguements +# ========== +# +# test_list = no args runs all tests +# or +# session runs ompi_session tests + +# Usage +# +# ===== +# To invoke this script, enter either +# run_tests +# with no arguments to run all tests, or +# run_tests + +umask 007 + +if ("x$1" == "x") then + ./openmpi +else if ("$1" == "session") then + ./openmpi +else + echo "correct use: " + echo " run_tests (to run all rte tests)" + echo "or run_tests " + exit -1 +endif + +