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

num_fail=0

for test in tests/check*
do
    ./"$test" \
         && echo "PASS: $test" \
         || {
            echo "FAIL: $test"
            num_fail=$(( ${num_fail} + 1))
         }

done

exit $num_fail