Files
dvdisaster/regtest/runtests.sh
Stéphane Lesimple d90cd7fa40 release patchlevel 4
2020-09-05 18:42:56 +02:00

10 lines
215 B
Bash
Executable File

#!/usr/bin/env bash
cd "$(dirname "$0")"
allfailed=0
for i in rs*.bash; do
( DVDISASTER_SCSI_SIMULATED_NODELAY=1 ./$i ); ret=$?
allfailed=$((allfailed + ret))
done
echo Failed $allfailed tests
exit $allfailed