2016-11-25 17:18:40 +01:00
|
|
|
#!/cmd/rc
|
|
|
|
|
|
|
|
rfork
|
|
|
|
|
|
|
|
dir=$1
|
|
|
|
if(~ $dir '') dir=/qa
|
|
|
|
|
|
|
|
|
|
|
|
l = `{du -a /arch/$objtype/$dir|awk '{print $2}'|sort}
|
|
|
|
|
|
|
|
failed = ()
|
2017-04-28 00:47:12 +02:00
|
|
|
runner=.runner
|
2016-11-25 17:18:40 +01:00
|
|
|
|
|
|
|
for(t in $l){
|
|
|
|
if(test -x $t) {
|
2017-04-28 00:47:12 +02:00
|
|
|
if( test -x $t$runner ) { }
|
|
|
|
if not {
|
|
|
|
echo -n $t:
|
|
|
|
$t > /tmp/qa.log >[2=1]
|
|
|
|
st = $status
|
|
|
|
if(~ `{echo $st|field 3} PASS) {
|
|
|
|
rm /tmp/qa.log && echo PASS
|
|
|
|
}
|
|
|
|
if not { echo $st && cat /tmp/qa.log; exit $st}
|
2017-04-24 00:06:33 +02:00
|
|
|
}
|
2016-11-25 17:18:40 +01:00
|
|
|
}
|
|
|
|
}
|