2007-09-10 20:28:03 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2010-06-14 22:05:47 +00:00
|
|
|
export LANG=C
|
2010-05-27 22:34:00 +00:00
|
|
|
SHFILE=/tmp/unittest-parallel.sh
|
|
|
|
|
2010-08-16 14:16:56 +00:00
|
|
|
ls -t tests-to-run/*.sh \
|
2010-07-14 10:00:10 +00:00
|
|
|
| perl -pe 's:(.*/(.*)).sh:bash $1.sh > actual-results/$2; diff -Naur wanted-results/$2 actual-results/$2:' \
|
2010-05-27 22:34:00 +00:00
|
|
|
>$SHFILE
|
|
|
|
|
2010-06-25 23:56:14 +00:00
|
|
|
mkdir -p actual-results
|
2011-07-16 23:46:02 +00:00
|
|
|
stdout sh -x $SHFILE | tee testsuite.log
|
2010-05-27 22:34:00 +00:00
|
|
|
rm $SHFILE
|
2011-07-16 23:46:02 +00:00
|
|
|
# If testsuite.log contains @@ then there is a diff
|
|
|
|
if grep -q '@@' testsuite.log ; then
|
|
|
|
false
|
|
|
|
else
|
|
|
|
# No @@'s: So everything worked: Copy the source
|
|
|
|
rm -rf src-passing-testsuite
|
|
|
|
cp -a ../src src-passing-testsuite
|
|
|
|
fi
|
|
|
|
rm testsuite.log
|
2007-09-10 20:28:03 +00:00
|
|
|
|