abc9: suppress warnings when no compatible + used flop boxes formed
[yosys.git] / tests / smv / run-test.sh
1 #!/bin/bash
2
3 set -ex
4
5 rm -rf temp
6 mkdir -p temp
7
8 ../../yosys -p 'test_cell -muxdiv -w temp/test all'
9 rm -f temp/test_{alu,fa,lcu,lut,macc,shiftx}_*
10
11 cat > temp/makefile << "EOT"
12 all: $(addsuffix .ok,$(basename $(wildcard temp/test_*.il)))
13 %.ok: %.il
14 bash run-single.sh $(basename $<)
15 touch $@
16 EOT
17
18 ${MAKE:-make} -f temp/makefile
19