mirror of
https://git.savannah.gnu.org/git/parallel.git
synced 2024-11-22 14:07:55 +00:00
167332902b
Fixed bug if transfered file contains :.
15 lines
237 B
Bash
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
|
|
|
|
|
|
|