From a815163347fe0e5f003dc958ba474b64041a4b1f Mon Sep 17 00:00:00 2001 From: Laura Casswell Date: Mon, 9 Aug 2004 21:25:57 +0000 Subject: [PATCH] add run script for include tests This commit was SVN r1983. --- test/include/run_tests | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100755 test/include/run_tests diff --git a/test/include/run_tests b/test/include/run_tests new file mode 100755 index 0000000000..7fd64e2fe8 --- /dev/null +++ b/test/include/run_tests @@ -0,0 +1,34 @@ +#! /bin/csh -f +# Name +# ==== +# run script for include tests + +# Arguements +# ========== +# +# test_list = no args runs all tests +# or +# atomic runs atomic 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 + ./atomic +else if ("$1" == "atomic") then + ./atomic +else + echo "correct use: " + echo " run (to run all class tests)" + echo "or run " + exit -1 +endif + +