aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/dbus/dbus/run-ptest
blob: c72d083a9179d167b8fe7ee1b31eea3c8d3db2cf (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

output() {
  if [ $? -eq 0 ]
    then echo "PASS: $i"
    else echo "FAIL: $i"
  fi
}

for i in `ls test/test-*`; do ./$i ./test/data DBUS_TEST_HOMEDIR=./test >/dev/null; output; done