Skip to content

Commit

Permalink
A bash scrip to run all tests in the dir
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@5239 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
timlinux committed Apr 9, 2006
1 parent 07a9b64 commit 094b93c
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions tests/src/core/runtests.sh
@@ -0,0 +1,7 @@
#!/bin/bash
LIST=`ls -lah |grep rwxr-xr-x |grep -v ^d |grep -v pl$ |grep -v ~$ |grep -v .sh$ |awk '{print $8}'|awk '$1=$1' RS=`
for FILE in $LIST;
do
echo "Running $FILE"
`./${FILE}`
done

0 comments on commit 094b93c

Please sign in to comment.