diff options
author | Warwick Allison <warwick.allison@nokia.com> | 2010-02-15 04:31:33 (GMT) |
---|---|---|
committer | Warwick Allison <warwick.allison@nokia.com> | 2010-02-15 04:31:33 (GMT) |
commit | e1ffe40b36a69ba1b1e3bcd3619e5dc2a2fbe8ba (patch) | |
tree | 6c653f2ef8f5340d1c6d7d3b485b63c5c0566f91 /tests/auto/declarative/runall.sh | |
parent | 40a8d38c68258623da468483b75c5256240d0557 (diff) | |
download | Qt-e1ffe40b36a69ba1b1e3bcd3619e5dc2a2fbe8ba.zip Qt-e1ffe40b36a69ba1b1e3bcd3619e5dc2a2fbe8ba.tar.gz Qt-e1ffe40b36a69ba1b1e3bcd3619e5dc2a2fbe8ba.tar.bz2 |
Update as test running qmakery changes.
Diffstat (limited to 'tests/auto/declarative/runall.sh')
-rwxr-xr-x | tests/auto/declarative/runall.sh | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/tests/auto/declarative/runall.sh b/tests/auto/declarative/runall.sh index 33087a1..d9eddf9 100755 --- a/tests/auto/declarative/runall.sh +++ b/tests/auto/declarative/runall.sh @@ -5,13 +5,19 @@ sleep 1 trap "kill $!" EXIT export DISPLAY=:7 -make -k -j1 install 2>&1 | +( make -k -j1 install 2>&1; + for exe in $(make install | sed -n 's/^install .* "\([^"]*qt4\/tst_[^"]*\)".*/\1/p') + do + $exe + done +) | while read line do case "$line" in make*Error) echo "$line";; make*Stop) echo "$line";; make*) ;; + install*) ;; */qmake*) ;; */bin/moc*) ;; *targ.debug*) ;; |