Only run tests in directories
--- branches/PR-8817822/testing/run-all-tests.sh 2011-02-08 01:41:19 UTC (rev 920)
+++ branches/PR-8817822/testing/run-all-tests.sh 2011-02-08 01:44:31 UTC (rev 921)
@@ -1,9 +1,12 @@
#!/bin/bash
set -e
-set -x
pushd $(dirname $0) >> /dev/null
for X in *;
do
- $X/run-tests.sh
+ if [ -d $X ]; then
+ $X/run-tests.sh
+ fi
done
+
+echo "INFO: All testing completed!"