diff options
author | Clifford Wolf <clifford@clifford.at> | 2014-07-17 16:53:52 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2014-07-17 16:53:52 +0200 |
commit | ec3a798194342135d7aea21c334e6675701d66a6 (patch) | |
tree | 22f05c6be00c807a9a4a777c3476a6ce748f908c | |
parent | 9b183539af4adf7d2a127042ca384806c7e73367 (diff) | |
download | yosys-ec3a798194342135d7aea21c334e6675701d66a6.tar.gz yosys-ec3a798194342135d7aea21c334e6675701d66a6.tar.bz2 yosys-ec3a798194342135d7aea21c334e6675701d66a6.zip |
Also simulate unmapped memories in "make test"
-rwxr-xr-x | tests/tools/autotest.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/tools/autotest.sh b/tests/tools/autotest.sh index ff431eaf7..266691a64 100755 --- a/tests/tools/autotest.sh +++ b/tests/tools/autotest.sh @@ -128,7 +128,7 @@ 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; memory; opt; fsm; opt" $fn + test_passes -f "$frontend" -p "hierarchy; proc; opt; memory -nomap; opt; fsm; opt" $fn test_passes -f "$frontend" -p "hierarchy; proc; opt; memory; opt; fsm; opt; techmap; opt; abc -dff; opt" $fn fi touch ../${bn}.log |