aboutsummaryrefslogtreecommitdiffstats
path: root/tests/arch/intel_alm
diff options
context:
space:
mode:
authorXiretza <xiretza@xiretza.xyz>2020-09-16 17:59:37 +0200
committerXiretza <xiretza@xiretza.xyz>2020-09-21 15:07:02 +0200
commitacd47bbd52d11216b883b99f3e17ae4ffbd5f4a3 (patch)
treedf050fa4d1176a714b5c954f9d1d9f105ca61a61 /tests/arch/intel_alm
parentc6ff947f6bac336ab5a31913c2daf7ad1cb8b91b (diff)
downloadyosys-acd47bbd52d11216b883b99f3e17ae4ffbd5f4a3.tar.gz
yosys-acd47bbd52d11216b883b99f3e17ae4ffbd5f4a3.tar.bz2
yosys-acd47bbd52d11216b883b99f3e17ae4ffbd5f4a3.zip
tests: Centralize test collection and Makefile generation
Diffstat (limited to 'tests/arch/intel_alm')
-rwxr-xr-xtests/arch/intel_alm/run-test.sh22
1 files changed, 3 insertions, 19 deletions
diff --git a/tests/arch/intel_alm/run-test.sh b/tests/arch/intel_alm/run-test.sh
index bf19b887d..4be4b70ae 100755
--- a/tests/arch/intel_alm/run-test.sh
+++ b/tests/arch/intel_alm/run-test.sh
@@ -1,20 +1,4 @@
#!/usr/bin/env bash
-set -e
-{
-echo "all::"
-for x in *.ys; do
- echo "all:: run-$x"
- echo "run-$x:"
- echo " @echo 'Running $x..'"
- echo " @../../../yosys -ql ${x%.ys}.log -w 'Yosys has only limited support for tri-state logic at the moment.' $x"
-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
+set -eu
+source ../../gen-tests-makefile.sh
+run_tests --yosys-scripts --bash --yosys-args "-w 'Yosys has only limited support for tri-state logic at the moment.'"