diff options
author | Eddie Hung <eddie@fpgeh.com> | 2019-08-22 13:57:19 -0700 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2019-08-22 16:05:12 -0700 |
commit | 8e3754bdb468842a784ef5eac8427a59055673c3 (patch) | |
tree | 035b66a157d25f9877fb9ebf52804e4e1775daa4 /tests/ice40 | |
parent | 659a481482b59efd672034bff9e034fa6d47336c (diff) | |
download | yosys-8e3754bdb468842a784ef5eac8427a59055673c3.tar.gz yosys-8e3754bdb468842a784ef5eac8427a59055673c3.tar.bz2 yosys-8e3754bdb468842a784ef5eac8427a59055673c3.zip |
Hide tri-state warning message for now
Diffstat (limited to 'tests/ice40')
-rw-r--r-- | tests/ice40/.gitignore | 1 | ||||
-rwxr-xr-x | tests/ice40/run-test.sh | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/tests/ice40/.gitignore b/tests/ice40/.gitignore index 397b4a762..1d329c933 100644 --- a/tests/ice40/.gitignore +++ b/tests/ice40/.gitignore @@ -1 +1,2 @@ *.log +/run-test.mk diff --git a/tests/ice40/run-test.sh b/tests/ice40/run-test.sh index 5bd9fb173..184d8f09b 100755 --- a/tests/ice40/run-test.sh +++ b/tests/ice40/run-test.sh @@ -12,7 +12,7 @@ for x in *.ys; do echo "all:: run-$x" echo "run-$x:" echo " @echo 'Running $x..'" - echo " @../../yosys -ql ${x%.ys}.log $x" + echo " @../../yosys -ql ${x%.ys}.log $x -w 'Yosys has only limited support for tri-state logic at the moment.'" done for t in *_tb.v; do echo "all:: run-$t" |