aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorEddie Hung <eddie@fpgeh.com>2019-08-30 12:27:09 -0700
committerGitHub <noreply@github.com>2019-08-30 12:27:09 -0700
commit999fb33fd0e6d1714bc61f7e50a5c16e0da9d4ab (patch)
tree92e8e93ce83f7ea526596a72a0c1e1791f57da0e /tests
parenteef0676105ff592e0e96bb835f0139f2f40d55bb (diff)
parent6a111ad32487fb49c5d30db5697c794814ffa511 (diff)
downloadyosys-999fb33fd0e6d1714bc61f7e50a5c16e0da9d4ab.tar.gz
yosys-999fb33fd0e6d1714bc61f7e50a5c16e0da9d4ab.tar.bz2
yosys-999fb33fd0e6d1714bc61f7e50a5c16e0da9d4ab.zip
Merge pull request #1340 from YosysHQ/eddie/abc_no_clean
abc9 to not call "clean" at end of run (often called outside)
Diffstat (limited to 'tests')
-rwxr-xr-xtests/simple_abc9/run-test.sh8
1 files changed, 7 insertions, 1 deletions
diff --git a/tests/simple_abc9/run-test.sh b/tests/simple_abc9/run-test.sh
index 49ae23338..8df6994e3 100755
--- a/tests/simple_abc9/run-test.sh
+++ b/tests/simple_abc9/run-test.sh
@@ -20,4 +20,10 @@ fi
cp ../simple/*.v .
cp ../simple/*.sv .
DOLLAR='?'
-exec ${MAKE:-make} -f ../tools/autotest.mk $seed *.v EXTRA_FLAGS="-n 300 -p 'hierarchy; synth -run coarse; opt -full; techmap; abc9 -lut 4 -box ../abc.box; stat; check -assert; select -assert-none t:${DOLLAR}_NOT_ t:${DOLLAR}_AND_ %%'"
+exec ${MAKE:-make} -f ../tools/autotest.mk $seed *.v EXTRA_FLAGS="-n 300 -p '\
+ hierarchy; \
+ synth -run coarse; \
+ opt -full; \
+ techmap; abc9 -lut 4 -box ../abc.box; \
+ check -assert; \
+ select -assert-none t:${DOLLAR}_NOT_ t:${DOLLAR}_AND_ %%'"