--- /dev/null
+++ b/tests/tests_quick.sh
@@ -0,0 +1,30 @@
+#! /bin/bash
+# Test suite script for the Elk Code
+
+ELK=$1
+
+if [ -z "$1" ]; then
+  ELK=../../src/elk
+else
+  ELK=$1
+fi
+
+for i in test-001 test-002 test-003 test-005 test-007 test-009 test-010 test-011 test-013 test-014 test-018
+do
+  cd $i
+  echo
+  echo "Running test in directory $i..."
+  \rm -f *.OUT
+  set -o pipefail
+  $ELK | tee test.log
+  NERROR=`grep -c Error test.log`
+  if test $NERROR -gt 0
+  then
+    echo " Failed! See test.log and output files"
+  else
+    echo " Passed"
+    \rm -f test.log
+    \rm -f *.OUT
+  fi
+  cd ..
+done
+
