mirror of
https://github.com/YosysHQ/yosys
synced 2025-08-07 03:31:24 +00:00
Revert "Add tests for ecp5 architecture."
This reverts commit 134d3fea90
.
This commit is contained in:
parent
134d3fea90
commit
980830f7b8
31 changed files with 0 additions and 865 deletions
|
@ -1,33 +0,0 @@
|
|||
set -e
|
||||
if [ -f "../../techlibs/common/simcells.v" ]; then
|
||||
COMMON_PREFIX=../../techlibs/common
|
||||
TECHLIBS_PREFIX=../../techlibs
|
||||
else
|
||||
COMMON_PREFIX=/usr/local/share/yosys
|
||||
TECHLIBS_PREFIX=/usr/local/share/yosys
|
||||
fi
|
||||
{
|
||||
echo "all::"
|
||||
for x in *.ys; do
|
||||
echo "all:: run-$x"
|
||||
echo "run-$x:"
|
||||
echo " @echo 'Running $x..'"
|
||||
echo " @../../yosys -ql ${x%.ys}.log $x -w 'Yosys has only limited support for tri-state logic at the moment.'"
|
||||
|
||||
if [ -f "${x%.ys}_tb.v" ]; then
|
||||
echo " @echo 'Running ${x%.ys}_tb.v..'"
|
||||
echo " @iverilog -o ${x%.ys}_testbench $t ${x%.ys}_synth.v common.v $TECHLIBS_PREFIX/ice40/cells_sim.v"
|
||||
echo " @vvp -N ${x%.ys}_testbench"
|
||||
fi
|
||||
done
|
||||
|
||||
for s in *.sh; do
|
||||
if [ "$s" != "run-test.sh" ]; then
|
||||
echo "all:: run-$s"
|
||||
echo "run-$s:"
|
||||
echo " @echo 'Running $s..'"
|
||||
echo " @bash $s"
|
||||
fi
|
||||
done
|
||||
} > run-test.mk
|
||||
exec ${MAKE:-make} -f run-test.mk
|
Loading…
Add table
Add a link
Reference in a new issue