3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-12 12:08:19 +00:00
yosys/tests/techmap/run-test.sh
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