aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/quilt/quilt/run-ptest
blob: 958a9df5b61eea6f2e277f6e7ef7519d5e184986 (plain)
1
2
3
4
5
#!/bin/sh

ln -sf /bin/ed /usr/bin/ed
for i in `ls test/*.test |awk -F. '{print $1}' |awk -F/ '{print $2}'`; do make check-$i; if [ $? -eq 0 ]; then echo PASS: $i.test; else echo FAIL: $i.test; fi; done
rm -f /usr/bin/ed