We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f32d17 commit 51eed09Copy full SHA for 51eed09
tests/src/core/test_suite_builder.sh
@@ -0,0 +1,9 @@
1
+#!/bin/bash
2
+LIST=`ls ../../../src/core/ |grep .cpp |grep ^qgs |grep -v ~$ |grep -v moc.cpp$ | sed 's/.cpp//g' |awk '$1=$1' RS= |sort`
3
+for FILE in $LIST
4
+do
5
+ CLASSNAME=`grep -o "::Qgs[A-Za-z0-9]*(" ../../../src/core/${FILE}.cpp |head -1 | sed 's/:://g'| sed 's/(//g'`
6
+ ./test_builder.pl $CLASSNAME
7
+ #svn add test${FILE}.cpp
8
+done
9
+make install
0 commit comments