Skip to content

Commit c4bfab0

Browse files
author
timlinux
committed
A bash scrip to run all tests in the dir
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@5239 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent dca0021 commit c4bfab0

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

tests/src/core/runtests.sh

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
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=`
3+
for FILE in $LIST;
4+
do
5+
echo "Running $FILE"
6+
`./${FILE}`
7+
done

0 commit comments

Comments
 (0)