parallel/unittest/Start.sh
Ole Tange ca4e58fbaf Added warning if --trc/--transfer/--return without -S.
Added warning if --transfer and file unreadable.
Unittest of transfering of filename with \n passes.
2010-05-28 00:34:00 +02:00

14 lines
223 B
Bash

#!/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