diff options
author | Clifford Wolf <clifford@clifford.at> | 2014-09-14 16:09:06 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2014-09-14 16:09:06 +0200 |
commit | 7815f81c320a025c5b92677e375c12951dcbd14b (patch) | |
tree | f5a09485b53fd3c5f6c0b54e2d1e0bb15dbe6301 /tests/tools | |
parent | 7e156a541909ec857fbaa4a08940d0aaf0d27d4b (diff) | |
download | yosys-7815f81c320a025c5b92677e375c12951dcbd14b.tar.gz yosys-7815f81c320a025c5b92677e375c12951dcbd14b.tar.bz2 yosys-7815f81c320a025c5b92677e375c12951dcbd14b.zip |
Added "synth" command
Diffstat (limited to 'tests/tools')
-rwxr-xr-x | tests/tools/autotest.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/tools/autotest.sh b/tests/tools/autotest.sh index 102c021e0..50f5cb580 100755 --- a/tests/tools/autotest.sh +++ b/tests/tools/autotest.sh @@ -145,8 +145,8 @@ do elif [ "$frontend" = "verific_gates" ]; then test_passes -p "verific -vlog2k $fn; verific -import -gates -all; opt; memory;;" else - test_passes -f "$frontend" -p "hierarchy; proc; opt_const; opt_share;; wreduce;; share;; opt; memory -nomap;; fsm; opt" $fn - test_passes -f "$frontend" -p "hierarchy; proc; opt; memory; opt; fsm; opt -fine; techmap; opt; abc -dff; opt" $fn + test_passes -f "$frontend" -p "hierarchy; proc; opt; memory; opt; fsm; opt -fine" $fn + test_passes -f "$frontend" -p "hierarchy; synth -run coarse; techmap; opt; abc -dff" $fn fi touch ../${bn}.log } |