parallel/unittest/Start.sh
Ole Tange 167332902b --progress implemented.
Fixed bug if transfered file contains :.
2010-06-15 00:05:47 +02:00

15 lines
237 B
Bash

#!/bin/bash
export LANG=C
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