mirror of https://github.com/YosysHQ/yosys.git
Fail if iverilog fails
This commit is contained in:
parent
8e3754bdb4
commit
5061d239ae
|
@ -18,8 +18,8 @@ for t in *_tb.v; do
|
||||||
echo "all:: run-$t"
|
echo "all:: run-$t"
|
||||||
echo "run-$t:"
|
echo "run-$t:"
|
||||||
echo " @echo 'Running $t..'"
|
echo " @echo 'Running $t..'"
|
||||||
echo " @iverilog -o ${t%_tb.v}_testbench $t ${t%_tb.v}_synth.v common.v $COMMON_PREFIX/simcells.v $TECHLIBS_PREFIX/ice40/cells_sim.v"
|
echo " @iverilog -o ${t%_tb.v}_testbench $t ${t%_tb.v}_synth.v common.v $TECHLIBS_PREFIX/ice40/cells_sim.v"
|
||||||
echo " @if ! vvp -N ${t%_tb.v}_testbench > ${t%_tb.v}_testbench.log 2>&1; then grep 'ERROR' ${t%_tb.v}_testbench.log; exit 0; elif grep 'ERROR' ${t%_tb.v}_testbench.log || ! grep 'OKAY' ${t%_tb.v}_testbench.log; then echo "FAIL"; exit 0; fi"
|
echo " @vvp -N ${t%_tb.v}_testbench"
|
||||||
done
|
done
|
||||||
for s in *.sh; do
|
for s in *.sh; do
|
||||||
if [ "$s" != "run-test.sh" ]; then
|
if [ "$s" != "run-test.sh" ]; then
|
||||||
|
|
Loading…
Reference in New Issue