aboutsummaryrefslogtreecommitdiffstats
path: root/tests/techmap/recursive_runtest.sh
diff options
context:
space:
mode:
authorClaire Xen <claire@clairexen.net>2021-12-10 11:23:53 +0100
committerGitHub <noreply@github.com>2021-12-10 11:23:53 +0100
commitce82afe44f4c396c253a293a5f0d56212fe27010 (patch)
treece3d60c7aa65c8f67a583f1d8da1913ade20fd9e /tests/techmap/recursive_runtest.sh
parentcdb57118758f855518ad416d12728d72bff58c10 (diff)
parentd6e4d3f1ba9191f0f3bbed2d47a9ef80b8614e77 (diff)
downloadyosys-ce82afe44f4c396c253a293a5f0d56212fe27010.tar.gz
yosys-ce82afe44f4c396c253a293a5f0d56212fe27010.tar.bz2
yosys-ce82afe44f4c396c253a293a5f0d56212fe27010.zip
Merge pull request #3099 from YosysHQ/claire/readargs
Use "read" command to parse HDL files from Yosys command-line
Diffstat (limited to 'tests/techmap/recursive_runtest.sh')
-rw-r--r--tests/techmap/recursive_runtest.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/techmap/recursive_runtest.sh b/tests/techmap/recursive_runtest.sh
index 0725ccf40..564d678fa 100644
--- a/tests/techmap/recursive_runtest.sh
+++ b/tests/techmap/recursive_runtest.sh
@@ -1,3 +1,3 @@
set -e
-../../yosys -p 'hierarchy -top top; techmap -map recursive_map.v -max_iter 1; select -assert-count 2 t:sub; select -assert-count 2 t:bar' recursive.v
+../../yosys -p 'read_verilog recursive.v; hierarchy -top top; techmap -map recursive_map.v -max_iter 1; select -assert-count 2 t:sub; select -assert-count 2 t:bar'