parallel/unittest/Start.sh

14 lines
223 B
Bash
Raw Normal View History

2007-09-10 20:28:03 +00:00
#!/bin/bash
SHFILE=/tmp/unittest-parallel.sh
ls -t tests-to-run/test*.sh \
| perl -pe 's:(.*/(.*)).sh:sh $1.sh > actual-results/$2; diff -Naur wanted-results/$2 actual-results/$2:' \
>$SHFILE
sh -x $SHFILE
rm $SHFILE
2007-09-10 20:28:03 +00:00