diff options
author | Eddie Hung <eddie@fpgeh.com> | 2019-12-16 18:41:56 -0800 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2019-12-16 18:42:23 -0800 |
commit | aed67dd020575a393b21a65baebcce1d1f49d22a (patch) | |
tree | f7939e7d651871fb53ac0b8c6eb715942449a609 /tests | |
parent | d9bf7061cd6a5efc20c053bc96d05650f0fa3a14 (diff) | |
download | yosys-aed67dd020575a393b21a65baebcce1d1f49d22a.tar.gz yosys-aed67dd020575a393b21a65baebcce1d1f49d22a.tar.bz2 yosys-aed67dd020575a393b21a65baebcce1d1f49d22a.zip |
abc9 needs a clean afterwards
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/simple_abc9/run-test.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/simple_abc9/run-test.sh b/tests/simple_abc9/run-test.sh index 0d4262005..bc921daa9 100755 --- a/tests/simple_abc9/run-test.sh +++ b/tests/simple_abc9/run-test.sh @@ -20,10 +20,12 @@ fi cp ../simple/*.v . cp ../simple/*.sv . DOLLAR='?' -exec ${MAKE:-make} -f ../tools/autotest.mk $seed *.v EXTRA_FLAGS="-n 300 -p '\ +exec ${MAKE:-make} -f ../tools/autotest.mk $seed *.v *.sv EXTRA_FLAGS="-n 300 -p '\ hierarchy; \ synth -run coarse; \ opt -full; \ - techmap; abc9 -lut 4 -box ../abc.box; \ + techmap; \ + abc9 -lut 4 -box ../abc.box; \ + clean; \ check -assert; \ select -assert-none t:${DOLLAR}_NOT_ t:${DOLLAR}_AND_ %%'" |