1
0
mirror of synced 2026-01-20 01:55:30 +00:00
2019-02-20 15:34:59 -08:00

11 lines
153 B
Bash
Executable File

#!/bin/bash
set -e
for x in *_runtest.sh; do
echo "Running $x.."
if ! bash $x &> ${x%.sh}.log; then
tail ${x%.sh}.log
echo ERROR
exit 1
fi
done