aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/ptest-runner/files/ptest-runner
blob: 4f3c7ce730de651166683ed8b7ed478d74f67bf5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

echo "START: $0"
cd /usr/lib
for x in *
do
    if [ -x "/usr/lib/$x/ptest/run-ptest" ]; then
       date "+%Y-%m-%dT%H:%M"
        echo "BEGIN: $x"
        cd /usr/lib/$x/ptest
        ./run-ptest
        echo "END: $x"
       date "+%Y-%m-%dT%H:%M"
    fi
done
echo "STOP: $0"