mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-18 11:58:32 +00:00
Remove simulation from run-test.sh (unnecessary paths)
This commit is contained in:
parent
20f4aea480
commit
8e3abda193
1 changed files with 9 additions and 16 deletions
|
@ -1,11 +1,5 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
set -e
|
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::"
|
echo "all::"
|
||||||
for x in *.ys; do
|
for x in *.ys; do
|
||||||
|
@ -14,14 +8,13 @@ for x in *.ys; do
|
||||||
echo " @echo 'Running $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.'"
|
echo " @../../yosys -ql ${x%.ys}.log $x -w 'Yosys has only limited support for tri-state logic at the moment.'"
|
||||||
done
|
done
|
||||||
|
for s in *.sh; do
|
||||||
#for s in *.sh; do
|
if [ "$s" != "run-test.sh" ]; then
|
||||||
# if [ "$s" != "run-test.sh" ]; then
|
echo "all:: run-$s"
|
||||||
# echo "all:: run-$s"
|
echo "run-$s:"
|
||||||
# echo "run-$s:"
|
echo " @echo 'Running $s..'"
|
||||||
# echo " @echo 'Running $s..'"
|
echo " @bash $s"
|
||||||
# echo " @bash $s"
|
fi
|
||||||
# fi
|
done
|
||||||
#done
|
|
||||||
} > run-test.mk
|
} > run-test.mk
|
||||||
exec ${MAKE:-make} -f run-test.mk
|
exec ${MAKE:-make} -f run-test.mk
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue