diff options
author | Marcelina KoĆcielnicka <mwk@0x04.net> | 2021-05-27 20:54:29 +0200 |
---|---|---|
committer | Marcelina KoĆcielnicka <mwk@0x04.net> | 2021-08-11 13:34:10 +0200 |
commit | fd7921776387a05edadcc90d1300670d49a73d68 (patch) | |
tree | 84fb8ab2ff4c012b5dd24e8c3dcd5dace93474fb /tests/memories | |
parent | b96eb888cc7518c20532ff688ec24b8b51f88f8e (diff) | |
download | yosys-fd7921776387a05edadcc90d1300670d49a73d68.tar.gz yosys-fd7921776387a05edadcc90d1300670d49a73d68.tar.bz2 yosys-fd7921776387a05edadcc90d1300670d49a73d68.zip |
Add v2 memory cells.
Diffstat (limited to 'tests/memories')
-rwxr-xr-x | tests/memories/run-test.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/memories/run-test.sh b/tests/memories/run-test.sh index 376f5bf79..cded3eb40 100755 --- a/tests/memories/run-test.sh +++ b/tests/memories/run-test.sh @@ -18,7 +18,7 @@ ${MAKE:-make} -f ../tools/autotest.mk SEED="$seed" EXTRA_FLAGS="$abcopt" *.v for f in `egrep -l 'expect-(wr-ports|rd-ports|rd-clk)' *.v`; do echo -n "Testing expectations for $f .." - ../../yosys -qp "proc; opt; memory -nomap;; dump -outfile ${f%.v}.dmp t:\$mem" $f + ../../yosys -qp "proc; opt; memory -nomap;; dump -outfile ${f%.v}.dmp t:\$mem_v2" $f if grep -q expect-wr-ports $f; then grep -q "parameter \\\\WR_PORTS $(gawk '/expect-wr-ports/ { print $3; }' $f)\$" ${f%.v}.dmp || { echo " ERROR: Unexpected number of write ports."; false; } |