aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorClaire Xen <claire@clairexen.net>2021-04-21 12:24:07 +0200
committerGitHub <noreply@github.com>2021-04-21 12:24:07 +0200
commita5adb007742f0339b0a9663871fd86620d8f6a78 (patch)
tree191f8ae8212a68942e5d31d62c4135deb4d38df2 /tests
parentdce037a62c5bda9a8256d271d39b06be366120e8 (diff)
parent46d3f03d27b4851b64f909ddbb663cbdac0fed70 (diff)
downloadyosys-a5adb007742f0339b0a9663871fd86620d8f6a78.tar.gz
yosys-a5adb007742f0339b0a9663871fd86620d8f6a78.tar.bz2
yosys-a5adb007742f0339b0a9663871fd86620d8f6a78.zip
Merge pull request #2669 from YosysHQ/claire/ice40defaults
Add input default assignments to iCE40 cell library
Diffstat (limited to 'tests')
-rwxr-xr-xtests/arch/run-test.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/arch/run-test.sh b/tests/arch/run-test.sh
index 170078a7f..5d923db56 100755
--- a/tests/arch/run-test.sh
+++ b/tests/arch/run-test.sh
@@ -11,7 +11,7 @@ for arch in ../../techlibs/*; do
if [ "${defines[$arch_name]}" ]; then
for def in ${defines[$arch_name]}; do
echo -n "Test $path -D$def ->"
- iverilog -t null -I$arch -D$def $path
+ iverilog -t null -I$arch -D$def -DNO_ICE40_DEFAULT_ASSIGNMENTS $path
echo " ok"
done
else