Revision: 921 http://trac.macosforge.org/projects/darwinbuild/changeset/921 Author: wsiegrist@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!"
participants (1)
-
source_changes@macosforge.org