yosys/tests/techmap/run-test.sh

11 lines
153 B
Bash
Raw Normal View History

2014-02-21 05:06:40 -06:00
#!/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