Remove cruft from testing/ in preparation for test migration to pysawsim/test/.
authorW. Trevor King <wking@drexel.edu>
Fri, 29 Oct 2010 12:49:59 +0000 (08:49 -0400)
committerW. Trevor King <wking@drexel.edu>
Fri, 29 Oct 2010 12:49:59 +0000 (08:49 -0400)
testing/README [deleted file]
testing/common/fitHist.pyc [deleted file]
testing/test_cluster.sh [deleted file]

diff --git a/testing/README b/testing/README
deleted file mode 100644 (file)
index 5e63141..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-A bunch of validation checks.  Run automatically before allowing
-merges/commits to the main branch.  The smaller, faster subset is run
-before allowing commits/merges to any branch.
-
-Since this software is being developed on a cluster, many of the tests
-take advantage of the more powerful environment.  You should still be
-able to run the tests if you're on a standard machine though, it will
-just take more time :p.  To allow for the differences in invocation,
-the most tests are broken out into two scripts, a X.cl to be run on a
-cluster and an X.sh to be run on a standard machine.
-
-Each test directory contains the script run_test.sh, which gives
-automated testing scripts a common file name to look for.  Exporting
-the global variable ISACLUSTER allows more efficient execution on a
-cluster.  This can be accomplised (in Bash) with the command
-
-  $ export ISACLUSTER=1
-
-Note that it is also necessary to `touch' the testing directory after
-you add or remove a test to update bin/run-test.sh.
-
-The common directory stores code shared among the tests.
diff --git a/testing/common/fitHist.pyc b/testing/common/fitHist.pyc
deleted file mode 100644 (file)
index 91c4938..0000000
Binary files a/testing/common/fitHist.pyc and /dev/null differ
diff --git a/testing/test_cluster.sh b/testing/test_cluster.sh
deleted file mode 100755 (executable)
index d76d77f..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/bash
-#
-# Check to make sure the PBS queue is working before going
-# whole hog on the simulations.
-
-if [ "$ISACLUSTER" -eq 1 ]
-then
-    qcmd printenv
-fi
-
-exit 0