[darwinbuild-changes] [921] branches/PR-8817822/testing/run-all-tests.sh
source_changes at macosforge.org
source_changes at macosforge.org
Mon Feb 7 17:44:32 PST 2011
Revision: 921
http://trac.macosforge.org/projects/darwinbuild/changeset/921
Author: wsiegrist at apple.com
Date: 2011-02-07 17:44:31 -0800 (Mon, 07 Feb 2011)
Log Message:
-----------
Only run tests in directories
Modified Paths:
--------------
branches/PR-8817822/testing/run-all-tests.sh
Modified: branches/PR-8817822/testing/run-all-tests.sh
===================================================================
--- 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!"
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/darwinbuild-changes/attachments/20110207/2b15a021/attachment-0001.html>
More information about the darwinbuild-changes
mailing list