summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/runall.sh
blob: b58c82b75f284ac35fb5f4cb1a12e51dec8674c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh

Xnest :7 2>/dev/null &
trap "kill $!" EXIT
export DISPLAY=:7

make install 2>&1 |
    while read line
    do
        case "$line" in
        [a-z]*) ;;
        PASS*) ;;
        QDEBUG*) ;;
        Makefile*) ;;
        Config*) ;;
        Totals*) ;;
        \**) ;;
        ./*) ;;
        *) echo "$line"
        esac
    done