aboutsummaryrefslogtreecommitdiffstats
path: root/tests/arch/nexus/run-test.sh
diff options
context:
space:
mode:
authorMiodrag Milanović <mmicko@gmail.com>2020-10-19 11:20:56 +0200
committerGitHub <noreply@github.com>2020-10-19 11:20:56 +0200
commitac0bd2ffc4a29eb0a07ccad898f20842514d4825 (patch)
tree3fea7a1887683bf55cfe7e76f405fa75f54c9e33 /tests/arch/nexus/run-test.sh
parent4c925a3214347f86673c4aa97e5b127530cd0270 (diff)
parent4d584d9319e87023f3aee9f9bc86a036f670478c (diff)
downloadyosys-ac0bd2ffc4a29eb0a07ccad898f20842514d4825.tar.gz
yosys-ac0bd2ffc4a29eb0a07ccad898f20842514d4825.tar.bz2
yosys-ac0bd2ffc4a29eb0a07ccad898f20842514d4825.zip
Merge pull request #2397 from daveshah1/nexus
synth_nexus: Initial implementation
Diffstat (limited to 'tests/arch/nexus/run-test.sh')
-rw-r--r--tests/arch/nexus/run-test.sh20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/arch/nexus/run-test.sh b/tests/arch/nexus/run-test.sh
new file mode 100644
index 000000000..bf19b887d
--- /dev/null
+++ b/tests/arch/nexus/run-test.sh
@@ -0,0 +1,20 @@
+#!/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