aboutsummaryrefslogtreecommitdiffstats
path: root/tests/ice40
diff options
context:
space:
mode:
authorSergeyDegtyar <sndegtyar@gmail.com>2019-08-30 09:11:03 +0300
committerSergeyDegtyar <sndegtyar@gmail.com>2019-08-30 09:11:03 +0300
commit8e3abda19308bd4ac7e03d38f899831e853f4794 (patch)
treed85bed49cfaab6bae53db6c599edc643217377ad /tests/ice40
parent20f4aea480e259272360f4c77667a9e1828986e8 (diff)
downloadyosys-8e3abda19308bd4ac7e03d38f899831e853f4794.tar.gz
yosys-8e3abda19308bd4ac7e03d38f899831e853f4794.tar.bz2
yosys-8e3abda19308bd4ac7e03d38f899831e853f4794.zip
Remove simulation from run-test.sh (unnecessary paths)
Diffstat (limited to 'tests/ice40')
-rwxr-xr-xtests/ice40/run-test.sh25
1 files changed, 9 insertions, 16 deletions
diff --git a/tests/ice40/run-test.sh b/tests/ice40/run-test.sh
index acfd582d2..2c72ca3a9 100755
--- a/tests/ice40/run-test.sh
+++ b/tests/ice40/run-test.sh
@@ -1,11 +1,5 @@
+#!/usr/bin/env bash
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
@@ -14,14 +8,13 @@ for x in *.ys; do
echo " @echo 'Running $x..'"
echo " @../../yosys -ql ${x%.ys}.log $x -w 'Yosys has only limited support for tri-state logic at the moment.'"
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
+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