diff options
author | Martin Jones <martin.jones@nokia.com> | 2010-02-16 01:32:35 (GMT) |
---|---|---|
committer | Martin Jones <martin.jones@nokia.com> | 2010-02-16 01:32:35 (GMT) |
commit | 6f3649260d157584361112a94733b92f10c01b84 (patch) | |
tree | 13197132bd1f3854572728ff1699fa6780021365 /tests/auto/declarative/runall.sh | |
parent | b77e592cf9709c31f61c3e1d229b2a6c446ab8bc (diff) | |
parent | e7041de4d51a3166948924fc8640c8c6bc8daa7b (diff) | |
download | Qt-6f3649260d157584361112a94733b92f10c01b84.zip Qt-6f3649260d157584361112a94733b92f10c01b84.tar.gz Qt-6f3649260d157584361112a94733b92f10c01b84.tar.bz2 |
Merge branch 'master' of scm.dev.nokia.troll.no:qt/qt-qml
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*) ;; |